Skip to content

Commit

Permalink
fix: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Sep 22, 2024
1 parent 9c7836f commit 5757578
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/components/SideEditorLink/SideEditorLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import React from "react";
import styles from "./SideEditorLink.module.css";

export default function SideEditorLink({
text="side editor"
}:{
text = "side editor",
}: {
text: string;
}) {
const editorStore = useEditorStore();
Expand Down
6 changes: 3 additions & 3 deletions content/05-Conditional-Validation/04-if-then-keyword/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ solution = {
const: true,
},
},
"required": ["isStudent"],
required: ["isStudent"],
},
then: {
required: ["age"],
Expand Down Expand Up @@ -72,10 +72,10 @@ const testCases = [
},
{
input: {
name: "John Doe"
name: "John Doe",
},
expected: true,
}
},
];

module.exports = {
Expand Down

0 comments on commit 5757578

Please sign in to comment.