Skip to content

Commit

Permalink
feat: restore ff
Browse files Browse the repository at this point in the history
  • Loading branch information
fabryscript committed Jul 3, 2024
1 parent d4539fa commit 0570277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export type PreviousTrade = {
const Home = () => {
const featureFlags = useFeatureFlags();
if (!featureFlags._isInitialized) return null;
return !featureFlags.limitOrders ? <HomeNew /> : <HomeV1 />;
return featureFlags.limitOrders ? <HomeNew /> : <HomeV1 />;
};

const HomeNew = () => {
Expand Down

0 comments on commit 0570277

Please sign in to comment.