Skip to content

Commit

Permalink
Merge pull request #47 from FlexConfirmMail/fix-lint-error
Browse files Browse the repository at this point in the history
Fix lint error
  • Loading branch information
HashidaTKS authored Jan 31, 2025
2 parents 327951e + c47a0c2 commit 0f0241e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/web/config-loader.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ export class ConfigLoader {
try {
const response = await fetch(url);
console.debug("response:", response);
if (!response.ok)
{
if (!response.ok) {
return null;
}
const data = await response.text();
Expand Down

0 comments on commit 0f0241e

Please sign in to comment.