diff --git a/hub/admin-web/src/lib/toast.ts b/hub/admin-web/src/lib/toast.ts index ad89770..1b16d50 100644 --- a/hub/admin-web/src/lib/toast.ts +++ b/hub/admin-web/src/lib/toast.ts @@ -32,3 +32,6 @@ export function toastSuccess(message: string): void { export function toastError(message: string): void { pushToast(message, 'error', 5000); } +export function toastInfo(message: string): void { + pushToast(message, 'info'); +} diff --git a/hub/admin-web/src/routes/admin/provider/+page.svelte b/hub/admin-web/src/routes/admin/provider/+page.svelte index 383ecc7..b098f82 100644 --- a/hub/admin-web/src/routes/admin/provider/+page.svelte +++ b/hub/admin-web/src/routes/admin/provider/+page.svelte @@ -1,4 +1,5 @@