From 1530e8b294db3edafb98a4d15b1e68bd2df3cb6d Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 9 Aug 2024 01:11:44 +0200 Subject: [PATCH] style: :art: remove useless spaces --- src/utils/toast.js | 3 --- 1 file changed, 3 deletions(-) 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')