Skip to content
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ export default tseslint.config(
],
'@typescript-eslint/no-deprecated': 'warn',
'@typescript-eslint/no-floating-promises': 'error',
'@typescript-eslint/no-misused-promises': [ 'error', { checksVoidReturn: { arguments: false, attributes: false, properties: false } }],
'@typescript-eslint/prefer-string-starts-ends-with': 'error'
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const CancelSeriesTimerButton: FC<CancelSeriesTimerButtonProps> = ({
timerId: itemId
},
{
onSuccess: async () => {
onSuccess: () => {
toast(globalize.translate('SeriesCancelled'));
loading.hide();
navigate('/livetv');
Expand Down
Loading