Skip to content

Commit

Permalink
chore: handles PR remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
feugy committed Nov 22, 2024
1 parent 23388cb commit 63ef1e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function getBasePath(): null | string {
} catch {
// do nothing
}
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain -- we can't use optionnal here, it'll break if process does not exist.
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain -- we can't use optional here, it'll break if process does not exist.
if (typeof process === 'undefined' || typeof process.env === 'undefined') {
return null;
}
Expand Down

0 comments on commit 63ef1e3

Please sign in to comment.