Skip to content

Commit

Permalink
Merge pull request #197 from openbankingnigeria/web
Browse files Browse the repository at this point in the history
issue fix
  • Loading branch information
christopheresivwekpe authored Apr 7, 2024
2 parents 5a8cb75 + 20eb135 commit 924436a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions apps/web/app/(webapp)/app/system-settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ const SystemSettingsPage = async ({ searchParams }: UrlParamsProps) => {
data: null
});

const environment = (
(path == 'test_mode_configuration' || path == '') ?
'development' :
details?.isVerified ?
'production' : 'development'
);
const environment = getMode || 'development';

/** REFRESH TOKEN CHECK */
let refreshTokenRes = null;
Expand Down

0 comments on commit 924436a

Please sign in to comment.