mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-01 05:07:56 +00:00
⬆️(frontend) upgrade frontend to ESLint 9
Manually upgrade the frontend codebase to ESLint 9. Update the linting configuration and related code where required to maintain compatibility with the new major version.
This commit is contained in:
committed by
aleb_the_flash
parent
73a7841b96
commit
6ccc9ef0bf
@@ -12,7 +12,9 @@ export const useMuteParticipants = () => {
|
||||
return Promise.all(promises)
|
||||
} catch (error) {
|
||||
console.error('An error occurred while muting participants :', error)
|
||||
throw new Error('An error occurred while muting participants.')
|
||||
throw new Error('An error occurred while muting participants.', {
|
||||
cause: error,
|
||||
})
|
||||
}
|
||||
}
|
||||
return { muteParticipants }
|
||||
|
||||
Reference in New Issue
Block a user