diff --git a/packages/atlas/atlas.config.yml b/packages/atlas/atlas.config.yml
index cea2343b8a..f80e8f26df 100644
--- a/packages/atlas/atlas.config.yml
+++ b/packages/atlas/atlas.config.yml
@@ -11,7 +11,7 @@ general:
joystreamLandingPageUrl: 'https://www.joystream.org' # URL for Joystream landing page - used in the footer and in "Learn more" links
joystreamDiscordUrl: 'https://discord.gg/DE9UN3YpRP' # URL for Joystream Discord - used for support when errors occur
appContentFocus: 'web3 & crypto' # Content focus of given app. Provide a string, for example `web & crypto` or `sport`
- crtMaintenanceMode: true
+ crtMaintenanceMode: false
storage:
assetResponseTimeout: 2_000 # Timeout for asset response in ms - after this timeout, different distributor will be tried
assetUploadStatusPollingInterval: 2000 # Interval for polling asset upload status in ms - polling begins once asset is uploaded and is finished once QN reports the asset as accepted
diff --git a/packages/atlas/src/views/studio/CrtWelcomeView/CrtWelcomeView.tsx b/packages/atlas/src/views/studio/CrtWelcomeView/CrtWelcomeView.tsx
index ce1a3874ba..22146a0752 100644
--- a/packages/atlas/src/views/studio/CrtWelcomeView/CrtWelcomeView.tsx
+++ b/packages/atlas/src/views/studio/CrtWelcomeView/CrtWelcomeView.tsx
@@ -1,16 +1,16 @@
-import { atlasConfig } from '@/config'
-import { CrtMaintenanceView } from '@/views/studio/CrtMaintenanceView'
import { useState } from 'react'
import { SvgActionPlay } from '@/assets/icons'
import { WelcomeView } from '@/components/WelcomeView'
import { CreateTokenDrawer } from '@/components/_crt/CreateTokenDrawer/CreateTokenDrawer'
+import { atlasConfig } from '@/config'
+import { CrtMaintenanceView } from '@/views/studio/CrtMaintenanceView'
export const CrtWelcomeView = () => {
const [showDrawer, setShowDrawer] = useState(false)
- if (atlasConfig.general.crtMaintenanceMode) {
- return
- }
+ if (atlasConfig.general.crtMaintenanceMode) {
+ return
+ }
return (
<>
setShowDrawer(false)} />