We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc43f4 commit 05a3183Copy full SHA for 05a3183
packages/app/src/app/pages/Dashboard/Content/CreateNewSandbox/NewSandboxModal/ImportTab.tsx
@@ -9,13 +9,11 @@ interface Props {
9
username: string;
10
}
11
12
-const STACKBIT_DISABLED = true;
13
-
14
export const ImportTab = ({ username }: Props) => (
15
<>
16
<ImportWizardContainer>
17
<GitHubImport />
18
- {username && !STACKBIT_DISABLED && <StackbitImport username={username} />}
+ {username && <StackbitImport username={username} />}
19
</ImportWizardContainer>
20
<ImportChoices>
21
<ImportChoice href="/docs/importing#export-with-cli">
0 commit comments