Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
modship committed Jun 28, 2024
1 parent f5509c6 commit 5c9871d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/ExplorerApiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class ExplorerApiClient {
resolve(response.data[address]);
})
.catch((_error) => {
reject("error getting domain owned by address");
reject('error getting domain owned by address');

Check failure on line 26 in frontend/src/ExplorerApiClient.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Expected the Promise rejection reason to be an Error
});
});
}
Expand All @@ -36,7 +36,7 @@ export class ExplorerApiClient {
resolve(response.data);
})
.catch((_error) => {
reject("error getting domains info");
reject('error getting domains info');

Check failure on line 39 in frontend/src/ExplorerApiClient.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Expected the Promise rejection reason to be an Error
});
});
}
Expand Down
1 change: 0 additions & 1 deletion frontend/src/utils/write-mns-sc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,6 @@ export function useWriteMNS(client?: Client) {
}
}


setList(list);
setListSpinning(false);
return list;
Expand Down

0 comments on commit 5c9871d

Please sign in to comment.