Skip to content

Commit

Permalink
delint
Browse files Browse the repository at this point in the history
  • Loading branch information
rbren committed Jan 23, 2025
1 parent 26ad4ec commit 34876bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/features/controls/controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function Controls({ setSecurityOpen, showSecurityLock }: ControlsProps) {
</div>

<ConversationCard
conversationID={params.conversationId}
conversationID={params.conversationId || ''}

Check failure on line 41 in frontend/src/components/features/controls/controls.tsx

View workflow job for this annotation

GitHub Actions / Lint frontend

Replace `''` with `""`
variant="compact"
onDownloadWorkspace={handleDownloadWorkspace}
title={conversation?.title ?? ""}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ export function ConversationCard({
{titleMode !== "view" ? (
<input
ref={inputRef}
disabled={titleMode === "view"}
data-testid="conversation-card-title"
onKeyUp={handleKeyUp}
type="text"
Expand Down

0 comments on commit 34876bf

Please sign in to comment.