Skip to content

Commit 8ac24e5

Browse files
Code cleanup and linter fixes
- Remove unnecessary comments from ai-prompt-box - Add pyright ignore for streamlit import in template
1 parent eef0e5b commit 8ac24e5

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

components/ui/ai-prompt-box.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ import { ChatPicker } from '../chat-picker'
99
import { LLMModel, LLMModelConfig } from '@/lib/models'
1010
import { TemplateId, Templates } from '@/lib/templates'
1111

12-
// Utility function for className merging
1312
const cn = (...classes: (string | undefined | null | false)[]) => classes.filter(Boolean).join(" ");
1413

15-
// Embedded CSS for minimal custom styles
1614
const styles = `
1715
*:focus-visible {
1816
outline-offset: 0 !important;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Scaffolding for a Streamlit app
22

3-
import streamlit as st
3+
import streamlit as st # pyright: ignore[reportMissingImports]
44

55
st.write("Hello, World!")

0 commit comments

Comments
 (0)