Skip to content

Commit

Permalink
chore: 프로그램 설치 에러 메세지, 헤더 높이 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyunbak committed Nov 24, 2024
1 parent 672df22 commit 6757dd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/sub/judge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class Judge {
*/
if (!checkCli(langToJudgeInfo[language].cli)) {
throw new Error(
`프로그램이 설치되어 있지 않습니다.\n\ncli(\`${langToJudgeInfo[language].cli}\`)가 설치되어 있어야 합니다.\n\n설치 후 재시작해주세요.`,
`프로그램이 설치되어 있지 않습니다.\n\ncli \`${langToJudgeInfo[language].cli}\` 가 설치되어 있어야 합니다.\n\n설치 후 재시작해주세요.`,
);
}

Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export function Header() {
width: 100%;
border-bottom: 1px solid lightgray;
height: ${size.EDITOR_HEADER_HEIGHT}px;
min-height: ${size.EDITOR_HEADER_HEIGHT}px;
color: ${color.text};
`}
>
Expand Down

0 comments on commit 6757dd5

Please sign in to comment.