Skip to content

Commit

Permalink
renamed e to _e to not trigger the unused variable check
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored Aug 5, 2024
1 parent 486db23 commit 3c41ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webclient/app/composables/webglSupport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ function supportsWebgl(): boolean {
try {
const canvas = document.createElement("canvas");
return !!window.WebGLRenderingContext && !!(canvas.getContext("webgl") || canvas.getContext("experimental-webgl"));
} catch (e) {
} catch (_e) {
return false;
}
}
Expand Down

0 comments on commit 3c41ede

Please sign in to comment.