From 3cd6894978fadc56ece54f8097bdb3753268b42b Mon Sep 17 00:00:00 2001 From: Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> Date: Mon, 16 Oct 2023 22:04:31 +0100 Subject: [PATCH] stop switch-case fall through --- frontend/src/components/store/Store.tsx | 8 ++++++-- frontend/src/store.tsx | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/store/Store.tsx b/frontend/src/components/store/Store.tsx index a5659e41e..04d46d8b2 100644 --- a/frontend/src/components/store/Store.tsx +++ b/frontend/src/components/store/Store.tsx @@ -68,8 +68,8 @@ const BrowseTab: FC<{ children: { setPluginCount: Dispatch [ { data: 1, label: t('Store.store_tabs.alph_desc') }, { data: 2, label: t('Store.store_tabs.alph_asce') }, - { data: 3, label: 'date descending' }, - { data: 4, label: 'date ascending' }, + { data: 3, label: 'date ascending' }, + { data: 4, label: 'date descending' }, ], [], ); @@ -89,15 +89,19 @@ const BrowseTab: FC<{ children: { setPluginCount: Dispatch