126 all logs shown when unauthenticated #131

Merged
noahspannbauer merged 8 commits from 126-all-logs-shown-when-unauthenticated into main 2026-04-26 18:08:34 -04:00
Showing only changes of commit a6af3c2229 - Show all commits

View File

@@ -528,8 +528,8 @@ const Logbook: React.FC<unknown> = () => {
}, [state.totalEntries, state.pagination?.pageSize]) }, [state.totalEntries, state.pagination?.pageSize])
useEffect(() => { useEffect(() => {
console.log(state.pagination) console.log(state)
}, [state.pagination]) }, [state])
return ( return (
<> <>
@@ -554,7 +554,7 @@ const Logbook: React.FC<unknown> = () => {
onClose={() => onClose={() =>
dispatch({ type: 'SET_ALERT', payload: undefined }) dispatch({ type: 'SET_ALERT', payload: undefined })
} }
severity={'info'} severity={state.alert.severity}
> >
{state.alert.message} {state.alert.message}
</Alert> </Alert>