Skip to content

Commit

Permalink
fix debbuging condition
Browse files Browse the repository at this point in the history
  • Loading branch information
julia-eileen committed Oct 17, 2024
1 parent 7ab148e commit 1dd4bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useNewUiEnabled.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useFlag } from '@unleash/proxy-client-react';
import { UNLEASH_NEW_UI_FEATURE_FLAG } from '../constants';

export const useNewUiEnabled = () => {
const newUiEnabled = useFlag(UNLEASH_NEW_UI_FEATURE_FLAG) || true;
const newUiEnabled = useFlag(UNLEASH_NEW_UI_FEATURE_FLAG);

return newUiEnabled;
};

0 comments on commit 1dd4bc4

Please sign in to comment.