diff --git a/src/utils/toast.js b/src/utils/toast.js index 51b47cb..75cac07 100644 --- a/src/utils/toast.js +++ b/src/utils/toast.js @@ -7,9 +7,6 @@ export const showMessage = (text, backgroundColor) => }) export const showError = (text) => showMessage(text, '--color-error') - export const showWarning = (text) => showMessage(text, '--color-warning') - export const showInfo = (text) => showMessage(text, '--color-primary') - export const showSuccess = (text) => showMessage(text, '--color-success')