Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
chore(ops): disable evm on testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
pierregee committed Nov 2, 2023
1 parent a0105c4 commit a18019b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/fixtures/flags.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
"stage": "public",
"version": ">=2.27.0",
"description": "Allow borrowing of DUSD for vault with only DUSD as collateral",
"networks": ["TestNet", "Playground", "Local", "DevNet", "Changi"],
"networks": ["Playground", "Local", "DevNet", "Changi"],
"platforms": ["ios", "android", "web"],
"app": ["MOBILE_LW"]
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/api/v0/settings/flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const cors = Cors({
methods: ["GET", "HEAD"],
});

export default async function handle(
export default async function handle (
req: NextApiRequest,
res: NextApiResponse<FeatureFlag[]>
): Promise<void> {
Expand Down Expand Up @@ -363,7 +363,6 @@ export default async function handle(
description:
"Allow borrowing of DUSD for vault with only DUSD as collateral",
networks: [
EnvironmentNetwork.TestNet,
EnvironmentNetwork.RemotePlayground,
EnvironmentNetwork.LocalPlayground,
EnvironmentNetwork.DevNet,
Expand Down

0 comments on commit a18019b

Please sign in to comment.