summaryrefslogtreecommitdiff
path: root/frontend/src/components/Toast.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Toast.tsx')
-rw-r--r--frontend/src/components/Toast.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/components/Toast.tsx b/frontend/src/components/Toast.tsx
index 13d12f58..e40d1d22 100644
--- a/frontend/src/components/Toast.tsx
+++ b/frontend/src/components/Toast.tsx
@@ -78,7 +78,9 @@ const GamepadUIQAMToast: FC<ToastProps> = memo(({ toast }) => {
</div>
)}
</div>
- <div className={templateClasses.StandardNotificationDescription}>{toast.title}</div>
+ <div className={templateClasses.StandardNotificationDescription}>
+ {toast.fullTemplateTitle || toast.title}
+ </div>
<div className={templateClasses.StandardNotificationSubText}>{toast.body}</div>
</div>
{/* TODO support NewIndicator */}