Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gane5h committed Nov 17, 2023
1 parent 08858b1 commit 6f643fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"react/no-children-prop": "off",
"no-unsafe-optional-chaining": "warn",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/ban-types": [
"error",
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { type Option, None, Some } from "@/utils/option";
import {
type ChainActivityEvent,
CovalentClient,
} from "@covalenthq/client-sdk";
import {
type ColumnDef,
Expand All @@ -11,7 +10,7 @@ import {
getSortedRowModel,
useReactTable,
} from "@tanstack/react-table";
import { useContext, useEffect, useState } from "react";
import { useEffect, useState } from "react";
import {
Table,
TableBody,
Expand Down Expand Up @@ -304,10 +303,10 @@ export const AddressActivityListView: React.FC<
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef
.header,
header.getContext()
)}
header.column.columnDef
.header,
header.getContext()
)}
</TableHead>
);
})}
Expand Down

0 comments on commit 6f643fc

Please sign in to comment.