Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleroooo committed Dec 20, 2024
1 parent aeda6ed commit c8f6f7e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/lib/testFlags.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { isDev } from '@/constants/networks';

class TestFlags {
public queryParams: { [key: string]: string };

Expand Down Expand Up @@ -63,11 +61,11 @@ class TestFlags {
}

get useAbacusTs() {
return isDev;
return true;
}

get disableAbacus() {
return this.booleanFlag(this.queryParams.disable_abacus);
return true;
}

get showNewDepositFlow() {
Expand Down

0 comments on commit c8f6f7e

Please sign in to comment.