Skip to content

Commit 64fc4ea

Browse files
fix(toast): reduce delay for toast appearance (#2932)
1 parent 8646a27 commit 64fc4ea

File tree

1 file changed

+1
-1
lines changed
  • apps/desktop/src/components/main/sidebar/toast

1 file changed

+1
-1
lines changed

apps/desktop/src/components/main/sidebar/toast/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export function ToastArea({
153153
}
154154

155155
function useShouldShowToast(isProfileExpanded: boolean) {
156-
const TOAST_CHECK_DELAY_MS = 3000;
156+
const TOAST_CHECK_DELAY_MS = 500;
157157

158158
const [showToast, setShowToast] = useState(false);
159159

0 commit comments

Comments
 (0)