Skip to content

Commit

Permalink
fix: resolve ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shishirbychapur committed Nov 4, 2024
1 parent ce826d3 commit 71f1e8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/pages/code/testcase-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function TestcasesTab({
}) {
const testcaseTabs = testInputs?.map((_, idx) => `Case ${idx + 1}`)

if (testInputs.length === 0) return null
if (!testInputs || testInputs.length === 0) return null
return (
<div>
<CustomTabs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"packages/*"
],
"scripts": {
"build": "turbo run build --force",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
Expand Down

0 comments on commit 71f1e8d

Please sign in to comment.