Skip to content

Commit b5dd8a1

Browse files
committed
Chore: Update dependencies and remove unused catch error variables
1 parent 233902f commit b5dd8a1

File tree

9 files changed

+27264
-1105
lines changed

9 files changed

+27264
-1105
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ module.exports = {
66
},
77
rules: {
88
'import/no-nodejs-modules': 'off',
9+
'@typescript-eslint/ban-types': 'off',
910
},
1011
};

app/platform-redirect/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const sanitizeNext = (next: string) => {
33
let sanitizedNext: string;
44
try {
55
sanitizedNext = decodeURIComponent(next);
6-
} catch (e) {
6+
} catch {
77
// Return empty string if decoding fails
88
return '';
99
}

0 commit comments

Comments
 (0)