Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zfurtak committed Sep 20, 2024
1 parent d1776d3 commit f8fbbcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Debug/DebugDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function DebugDetails({data, onSave, onDelete, validate}: DebugDetailsProps) {
() =>
Object.entries(data ?? {})
.filter(([, value]) => typeof value === 'boolean')
.sort((a, b) => a.at(0).localeCompare(b[0])) as Array<[string, boolean]>,
.sort((a, b) => a[0].localeCompare(b[0])) as Array<[string, boolean]>,
[data],
);
const constantFields = useMemo(
Expand Down

0 comments on commit f8fbbcc

Please sign in to comment.