We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b035290 commit 53352b3Copy full SHA for 53352b3
apps/site/components/Common/CodeBox.tsx
@@ -25,7 +25,7 @@ const CodeBox: FC<PropsWithChildren<CodeBoxProps>> = props => {
25
copyToClipboard(text);
26
27
notify({
28
- duration: 300,
+ duration: 800,
29
message: (
30
<div className="flex items-center gap-3">
31
<CodeBracketIcon className={styles.icon} />
packages/ui-components/src/Providers/NotificationProvider/index.tsx
@@ -39,7 +39,6 @@ export const NotificationProvider: FC<PropsWithChildren> = ({ children }) => {
39
<NotificationDispatch.Provider value={dispatch}>
40
<Toast.Provider>
41
{children}
42
-
43
{notification && (
44
<Notification duration={notification.duration}>
45
{notification.message}
0 commit comments