Skip to content

Commit

Permalink
fix: making success toast on Decent OA stay longer (#4923)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanahem authored May 17, 2024
1 parent 4b9b7e3 commit a73f502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/hooks/useActOnUnknownOpenAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const useActOnUnknownOpenAction = ({

onSuccess?.();
setIsLoading(false);
toast.success(successToast || 'Success!');
toast.success(successToast || 'Success!', { duration: 5000 });
};

const { signTypedDataAsync } = useSignTypedData({ mutation: { onError } });
Expand Down

1 comment on commit a73f502

@vercel
Copy link

@vercel vercel bot commented on a73f502 May 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-git-main-heyxyz.vercel.app
hey.xyz
web-heyxyz.vercel.app
heyxyz.vercel.app

Please sign in to comment.