Skip to content

Commit

Permalink
fix import and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pauloamorimbr committed Nov 28, 2024
1 parent aa22083 commit 25c0b2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsapp/js/account/accountSettingsRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type {
} from './account.constants';
import {HELP_ARTICLE_ANON_SUBMISSIONS_URL} from 'js/constants';
import {useSession} from '../stores/useSession';
import {useOrganizationQuery} from './stripe.api';
import {useOrganizationQuery} from './organization/organizationQuery';

bem.AccountSettings = makeBem(null, 'account-settings', 'form');
bem.AccountSettings__left = makeBem(bem.AccountSettings, 'left');
Expand All @@ -45,6 +45,7 @@ const AccountSettings = () => {
const orgQuery = useOrganizationQuery();

useEffect(() => {

if (!currentLoggedAccount || !orgQuery.data) {
return;
}
Expand Down

0 comments on commit 25c0b2c

Please sign in to comment.