diff options
author | Eric Bailey <git@esb.lol> | 2025-08-26 12:33:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-26 12:33:43 -0500 |
commit | dd2830ba6c5afcab3d9b9194e0eccb3d5bce2267 (patch) | |
tree | a58e4a56546ef02d265bd409ff52f71641fc71b8 /src/components/Toast | |
parent | 6a16ef83f61da2955e60b7fcfa017e1f042e3130 (diff) | |
download | voidsky-dd2830ba6c5afcab3d9b9194e0eccb3d5bce2267.tar.zst |
Fix bad copy pasta (#8907)
Diffstat (limited to 'src/components/Toast')
-rw-r--r-- | src/components/Toast/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Toast/index.tsx b/src/components/Toast/index.tsx index 16d62afcd..0d1c661d2 100644 --- a/src/components/Toast/index.tsx +++ b/src/components/Toast/index.tsx @@ -67,7 +67,7 @@ export function show( if (typeof content === 'string') { sonner.custom( <ToastConfigProvider id={id}> - <DefaultToast content={content} type={type} /> + <Default content={content} type={type} /> </ToastConfigProvider>, { ...options, |