|
|
@ -6,7 +6,8 @@ export const FtMessage = { |
|
|
|
message, |
|
|
|
type: 'info', |
|
|
|
grouping: true, |
|
|
|
plain: true, |
|
|
|
plain: false, |
|
|
|
duration: 5000, |
|
|
|
}) |
|
|
|
}, |
|
|
|
success: (message: string) => { |
|
|
@ -14,7 +15,8 @@ export const FtMessage = { |
|
|
|
message, |
|
|
|
type: 'success', |
|
|
|
grouping: true, |
|
|
|
plain: true, |
|
|
|
plain: false, |
|
|
|
duration: 5000, |
|
|
|
}) |
|
|
|
}, |
|
|
|
warning: (message: string) => { |
|
|
@ -22,7 +24,8 @@ export const FtMessage = { |
|
|
|
message, |
|
|
|
type: 'warning', |
|
|
|
grouping: true, |
|
|
|
plain: true, |
|
|
|
plain: false, |
|
|
|
duration: 5000, |
|
|
|
}) |
|
|
|
}, |
|
|
|
error: (message: string) => { |
|
|
@ -30,7 +33,8 @@ export const FtMessage = { |
|
|
|
message, |
|
|
|
type: 'error', |
|
|
|
grouping: true, |
|
|
|
plain: true, |
|
|
|
plain: false, |
|
|
|
duration: 5000, |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|