Skip to content

Commit

Permalink
chore: clean unused code & import
Browse files Browse the repository at this point in the history
  • Loading branch information
thewander02 committed May 18, 2024
1 parent 9c36121 commit 0e07cd6
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions resources/scripts/components/server/shell/ShellContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import ServerContentBlock from '@/components/elements/ServerContentBlock';
import { Dialog } from '@/components/elements/dialog';
import HugeIconsEggs from '@/components/elements/hugeicons/Egg';
import HugeIconsAlert from '@/components/elements/hugeicons/Alert';
import HugeIconsArrowRight from '@/components/elements/hugeicons/ArrowRight';

import { httpErrorToHuman } from '@/api/http';
import getNests from '@/api/nests/getNests';
Expand Down Expand Up @@ -253,27 +252,6 @@ const ShellContainer = () => {

<div className='border-t border-[#ffffff20] m-4 mt-0 mb-0'></div>

{/*
<div className='flex items-center justify-between p-4 pb-0'>
<button
onClick={() => step > 0 && setStep(step - 1)}
className={`rounded-full border-[1px] border-[#ffffff12] px-4 py-2 text-sm font-bold shadow-md hover:border-[#ffffff22] hover:shadow-lg`
+ (step == 0 || currentEgg === blankEggId && step == 1 ? ' cursor-not-allowed bg-neutral-800' : '')
}
>
Previous
</button>
<button
onClick={() => step < steps.length - 1 && setStep(step + 1)}
className={`rounded-full border-[1px] border-[#ffffff12] px-4 py-2 text-sm font-bold shadow-md hover:border-[#ffffff22] hover:shadow-lg`
+ (step == 3 ? ' cursor-not-allowed bg-neutral-800' : '')
}
>
Next
</button>
</div>
*/}

<div className='p-4 pt-2'>
{step == 0 && (
<div>
Expand Down

0 comments on commit 0e07cd6

Please sign in to comment.