Skip to content

Commit

Permalink
refactor(webapp): trigger webapp scripts
Browse files Browse the repository at this point in the history
This should NOT trigger API tests and stuff. The pipeline should be much
faster now.

Related to #83
  • Loading branch information
JoosepAlviste committed Jan 5, 2024
1 parent 072fb36 commit 2d84c4c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export const UserSeriesListPage = ({ status }: UserSeriesListPageProps) => {
return (
<Tabs.Root
value={selectedStatus ?? 'all'}
onValueChange={(newTab) =>
onValueChange={(newTab) => {
setSelectedStatus(
newTab === 'all' ? undefined : (newTab as UserSeriesStatus),
)
}
}}
className={s.container}
>
<Tabs.List className={s.tabs}>
Expand Down

0 comments on commit 2d84c4c

Please sign in to comment.