Skip to content

Commit

Permalink
fix :: command
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Oct 5, 2024
1 parent 913883f commit 097833b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/pages/Team/deploy/Container/NoneContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,17 +359,17 @@ export const TeamDeployNoneContainer = () => {
onChange={(e) => setOutputDir(e.target.value)}
/>
)}
{(deployType === 'backend' && framework === 'node') ||
(deployType === 'frontend' && renderType === 'ssr' && (
<Input
width={328}
height={46}
placeholder="ex) npm start"
label="실행 명령어를 설정해 주세요."
value={command}
onChange={(e) => setCommand(e.target.value)}
/>
))}
{((deployType === 'backend' && framework === 'node') ||
(deployType === 'frontend' && renderType === 'ssr')) && (
<Input
width={328}
height={46}
placeholder="ex) npm start"
label="실행 명령어를 설정해 주세요."
value={command}
onChange={(e) => setCommand(e.target.value)}
/>
)}
</LayoutBox>
</LayoutBox>
</LayoutBox>
Expand Down

0 comments on commit 097833b

Please sign in to comment.