diff --git a/app/screens/convert_gm_to_channel/channel_name_input.tsx b/app/screens/convert_gm_to_channel/channel_name_input.tsx
index 538cfcd46..bb3258263 100644
--- a/app/screens/convert_gm_to_channel/channel_name_input.tsx
+++ b/app/screens/convert_gm_to_channel/channel_name_input.tsx
@@ -4,11 +4,11 @@
import React from 'react';
import {useIntl} from 'react-intl';
-import FloatingTextInput from '@app/components/floating_text_input_label';
-import {Channel} from '@app/constants';
-import {useTheme} from '@app/context/theme';
-import {t} from '@app/i18n';
-import {getKeyboardAppearanceFromTheme} from '@app/utils/theme';
+import FloatingTextInput from '@components/floating_text_input_label';
+import {Channel} from '@constants';
+import {useTheme} from '@context/theme';
+import {t} from '@i18n';
+import {getKeyboardAppearanceFromTheme} from '@utils/theme';
type Props = {
error?: string;
diff --git a/app/screens/convert_gm_to_channel/convert_gm_to_channel.tsx b/app/screens/convert_gm_to_channel/convert_gm_to_channel.tsx
index 6ea510966..8c3cb1d34 100644
--- a/app/screens/convert_gm_to_channel/convert_gm_to_channel.tsx
+++ b/app/screens/convert_gm_to_channel/convert_gm_to_channel.tsx
@@ -4,8 +4,8 @@
import React, {useEffect, useRef, useState} from 'react';
import {fetchChannelMemberships, getGroupMessageMembersCommonTeams} from '@actions/remote/channel';
-import {PER_PAGE_DEFAULT} from '@app/client/rest/constants';
-import {useServerUrl} from '@app/context/server';
+import {PER_PAGE_DEFAULT} from '@client/rest/constants';
+import {useServerUrl} from '@context/server';
import ConvertGMToChannelForm from './convert_gm_to_channel_form';
import {Loader} from './loader';
diff --git a/app/screens/convert_gm_to_channel/convert_gm_to_channel_form/convert_gm_to_channel_form.tsx b/app/screens/convert_gm_to_channel/convert_gm_to_channel_form/convert_gm_to_channel_form.tsx
index eb65a3043..19e3690a5 100644
--- a/app/screens/convert_gm_to_channel/convert_gm_to_channel_form/convert_gm_to_channel_form.tsx
+++ b/app/screens/convert_gm_to_channel/convert_gm_to_channel_form/convert_gm_to_channel_form.tsx
@@ -6,11 +6,11 @@ import {useIntl} from 'react-intl';
import {View} from 'react-native';
import {convertGroupMessageToPrivateChannel, switchToChannelById} from '@actions/remote/channel';
-import {useServerUrl} from '@app/context/server';
-import {useTheme} from '@app/context/theme';
-import {logError} from '@app/utils/log';
-import {makeStyleSheetFromTheme} from '@app/utils/theme';
-import {displayUsername} from '@app/utils/user';
+import {useServerUrl} from '@context/server';
+import {useTheme} from '@context/theme';
+import {logError} from '@utils/log';
+import {makeStyleSheetFromTheme} from '@utils/theme';
+import {displayUsername} from '@utils/user';
import Button from '@components/button';
import {ChannelNameInput} from '../channel_name_input';
@@ -122,9 +122,7 @@ export const ConvertGMToChannelForm = ({
selectedTeamId={selectedTeam?.id}
/>
}
-
+