Fix typo on viewAll type

This commit is contained in:
Jackson Harper 2023-07-26 12:52:10 +08:00
parent 49969b6c42
commit 8ea5539512

View file

@ -198,7 +198,7 @@ function Subscriptions(props: LibraryFilterMenuProps): JSX.Element {
function Labels(props: LibraryFilterMenuProps): JSX.Element {
const { labels } = useGetLabelsQuery()
const [viewAll, setViewAll] = usePersistedState<boolean | undefined>({
const [viewAll, setViewAll] = usePersistedState<boolean>({
key: `--labels-view-all`,
initialValue: false,
})