Skip to content

Commit

Permalink
fix: Minor Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yossTheDev committed Aug 24, 2023
1 parent 622d2d9 commit 84056b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/ProjectWizard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { useScreenDirection } from '../hooks/useScreenDirection';
import { useStoreActions, useStoreState } from '../stores/Hooks';
import { getRandomNumber } from '../utils/getRandom';

const TEMPLATE_SYSTEM_ROOT = ' http://localhost:4000/';
const TEMPLATE_SYSTEM_ROOT = 'https://karbon-apps.github.io/templates/';

const NavBarMobile = React.lazy(
() => import('../components/Mobile/NavBarMobile'),
Expand Down Expand Up @@ -348,7 +348,7 @@ export const ProjectWizard: React.FC<Props> = ({ open, onClose }) => {
)}
</>
) : (
<p className='mx-auto my-auto text-xs text-base-content/70'>
<p className='mx-6 my-auto text-center text-xs text-base-content/70 md:mx-auto'>
No templates available go online to get new templates
created by the community
</p>
Expand Down Expand Up @@ -392,8 +392,8 @@ export const ProjectWizard: React.FC<Props> = ({ open, onClose }) => {
</>
))
) : (
<p className='mx-auto my-auto text-base-content/70'>
No templates
<p className='mx-auto my-auto text-center text-xs text-base-content/70'>
You haven't saved any template yet
</p>
)}
</div>
Expand Down Expand Up @@ -518,7 +518,7 @@ const Templates: React.FC<{
))}
</>
) : (
<p className='mx-auto my-auto text-xs text-base-content/70'>
<p className='mx-6 my-auto text-center text-xs text-base-content/70 md:mx-auto'>
No templates available go online to get new templates created by
the community
</p>
Expand Down

0 comments on commit 84056b6

Please sign in to comment.