mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-06 23:24:21 +01:00
fix: resolve lint and formatting errors
- Add useId hook for unique ID generation in SettingsControls - Fix label accessibility with proper htmlFor attribute - Apply Biome formatting rules to all modified files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -63,7 +63,7 @@ export const ChatInput: FC<ChatInputProps> = ({
|
||||
// IMEで変換中の場合は送信しない
|
||||
if (e.key === "Enter" && !e.nativeEvent.isComposing) {
|
||||
const isEnterSend = config?.enterKeyBehavior === "enter-send";
|
||||
|
||||
|
||||
if (isEnterSend && !e.shiftKey) {
|
||||
// Enter: Send mode
|
||||
e.preventDefault();
|
||||
|
||||
Reference in New Issue
Block a user