Skip to content

Commit

Permalink
Notify errors in shutdown task
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Jan 14, 2025
1 parent 5253162 commit 962147a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ShutdownActionIcon/ShutdownActionIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import classes from './ShutdownActionIcon.module.css';

export default function ShutdownActionIcon() {
const [isOpen, { open, close }] = useDisclosure(false);
const [runner, isRunning] = useTask({ taskName: 'shutdown', notifyErrors: false });
const [runner, isRunning] = useTask({ taskName: 'shutdown', notifyErrors: true });

const [atLCO, setAtLCO] = React.useState(false);
const authStatus = React.useContext(AuthContext);
Expand Down

0 comments on commit 962147a

Please sign in to comment.