Skip to content

Commit f6ec830

Browse files
authored
fix: Increase toast notification time (#138)
1 parent 30bef29 commit f6ec830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/context/ToastContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const ToastProvider: FC<{ children: ReactNode }> = ({ children }) => {
3535
setTimeout(() => {
3636
setToastContent({
3737
text: message,
38-
duration: duration || 3000,
38+
duration: duration || 8000,
3939
});
4040
setToastVisible(true);
4141
}, 100);

0 commit comments

Comments
 (0)