Skip to content

Commit

Permalink
Update condition check
Browse files Browse the repository at this point in the history
  • Loading branch information
mj52951 committed May 21, 2024
1 parent ca3146c commit efc14a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Faucet/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function App() {
Cookies.set("mintedExpires", timeToExpire.toISOString(), {
expires: timeToExpire,
});
if (selectedNetworkType === Network.EVM) {
if (selectedNetworkType.toLocaleLowerCase() === Network.EVM) {
mintEvmRequest(
BASE_URL,
sDomain.id,
Expand Down

0 comments on commit efc14a9

Please sign in to comment.