Skip to content

Commit 3b871d5

Browse files
committed
lint issues fixes
1 parent 12e7c01 commit 3b871d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/ResultDisplay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface ResultDisplayProps {
55
sql: string;
66
explanation: string;
77
columns: string[];
8-
rows: Record<string, any>[];
8+
rows: Record<string, unknown>[];
99
}
1010

1111
const ResultDisplay: React.FC<ResultDisplayProps> = ({ sql, explanation, columns, rows }) => {

frontend/src/services/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface QueryResponse {
88
sql: string;
99
explanation: string;
1010
columns: string[];
11-
rows: Record<string, any>[];
11+
rows: Record<string, unknown>[];
1212
}
1313

1414
export interface SchemaResponse {

0 commit comments

Comments
 (0)