fix song list filters

This commit is contained in:
jeffvli
2025-11-30 15:58:49 -08:00
parent 6d87da2474
commit c5c2b24a9d
11 changed files with 268 additions and 229 deletions
@@ -17,10 +17,6 @@ interface ComponentErrorFallbackProps {
const ComponentErrorFallback = ({ resetErrorBoundary }: ComponentErrorFallbackProps) => {
const { t } = useTranslation();
const handleRefresh = () => {
window.location.reload();
};
return (
<Box h="100%" pos="relative" w="100%">
<Center h="100%" p="md" w="100%">
@@ -35,9 +31,6 @@ const ComponentErrorFallback = ({ resetErrorBoundary }: ComponentErrorFallbackPr
<Button onClick={resetErrorBoundary} size="xs" variant="default">
{t('common.reload', { postProcess: 'sentenceCase' })}
</Button>
<Button onClick={handleRefresh} size="xs" variant="filled">
{t('common.refresh', { postProcess: 'sentenceCase' })}
</Button>
</Group>
</Stack>
</Center>