summaryrefslogtreecommitdiff
path: root/frontend/src/components/Toast.tsx
diff options
context:
space:
mode:
authorAAGaming <aa@mail.catvibers.me>2022-10-14 22:41:46 -0400
committerAAGaming <aa@mail.catvibers.me>2022-10-14 22:41:46 -0400
commit7445f066ed53c3b6e8a1003649ea21bff749b728 (patch)
tree8a8c9dc792a77849978d8cce0485f23ee10aa40d /frontend/src/components/Toast.tsx
parent6e48aefce863e316edeaa75e3e14cb516de053f2 (diff)
downloaddecky-loader-7445f066ed53c3b6e8a1003649ea21bff749b728.tar.gz
decky-loader-7445f066ed53c3b6e8a1003649ea21bff749b728.zip
Revert "Rewrite toaster hook to not re-create the window (#217)"
This reverts commit 3ac0abc82bd266eecb7c5f468481e364790be665.
Diffstat (limited to 'frontend/src/components/Toast.tsx')
-rw-r--r--frontend/src/components/Toast.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/Toast.tsx b/frontend/src/components/Toast.tsx
index 01a436d7..559c37c6 100644
--- a/frontend/src/components/Toast.tsx
+++ b/frontend/src/components/Toast.tsx
@@ -32,7 +32,7 @@ const Toast: FunctionComponent<ToastProps> = ({ toast }) => {
return (
<div
style={{ '--toast-duration': `${toast.nToastDurationMS}ms` } as React.CSSProperties}
- className={toastClasses.toastEnter}
+ className={joinClassNames(toastClasses.ToastPopup, toastClasses.toastEnter)}
>
<div
onClick={toast.data.onClick}