diff options
| author | AAGaming <aagaming@riseup.net> | 2024-07-26 14:16:05 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-08-03 14:04:19 -0400 |
| commit | b93fc8b557baed40a312b51196c600be3daaa6fd (patch) | |
| tree | 9d5f45493d1262639ea7d53a3ce5fab472f5b3a7 /frontend/src/components/settings | |
| parent | 88e7919a12fd56b297e73afb3fb05483f5893f4d (diff) | |
| download | decky-loader-b93fc8b557baed40a312b51196c600be3daaa6fd.tar.gz decky-loader-b93fc8b557baed40a312b51196c600be3daaa6fd.zip | |
feat(toaster): render notifications in the quick access menu
Diffstat (limited to 'frontend/src/components/settings')
| -rw-r--r-- | frontend/src/components/settings/pages/testing/index.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/components/settings/pages/testing/index.tsx b/frontend/src/components/settings/pages/testing/index.tsx index eb572614..6f52afe3 100644 --- a/frontend/src/components/settings/pages/testing/index.tsx +++ b/frontend/src/components/settings/pages/testing/index.tsx @@ -10,7 +10,7 @@ import { } from '@decky/ui'; import { useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; -import { FaDownload, FaInfo } from 'react-icons/fa'; +import { FaDownload, FaFlask, FaInfo } from 'react-icons/fa'; import { setSetting } from '../../../../utils/settings'; import { UpdateBranch } from '../general/BranchSelect'; @@ -94,6 +94,7 @@ export default function TestingVersionList() { DeckyPluginLoader.toaster.toast({ title: t('Testing.start_download_toast', { id: version.id }), body: null, + icon: <FaFlask />, }); try { await downloadTestingVersion(version.id, version.head_sha); @@ -102,6 +103,7 @@ export default function TestingVersionList() { DeckyPluginLoader.toaster.toast({ title: t('Testing.error'), body: `${e.name}: ${e.message}`, + icon: <FaFlask />, }); } } |
