Skip to content

Commit 4cbd69b

Browse files
committed
Fix linting errors
1 parent 0d03b92 commit 4cbd69b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

site/src/components/TemplateVersionEditor/TemplateVersionEditor.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default {
2121
},
2222
}
2323

24-
const Template: Story<TemplateVersionEditorProps> = (args: any) => (
24+
const Template: Story<TemplateVersionEditorProps> = (args: TemplateVersionEditorProps) => (
2525
<TemplateVersionEditor {...args} />
2626
)
2727

site/src/components/TemplateVersionEditor/TemplateVersionStatusBadge.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const getStatus = (
2525
text: string
2626
icon: ReactNode
2727
} => {
28-
console.log("Getting status", version.job.status)
2928
switch (version.job.status) {
3029
case "running":
3130
return {

0 commit comments

Comments
 (0)