Skip to content

Commit

Permalink
!fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jagnani73 committed May 9, 2024
1 parent bca4ca7 commit b695243
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default [
"react/no-children-prop": "off",
"no-unsafe-optional-chaining": "warn",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/ban-types": [
"error",
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
calculatePrettyBalance,
prettifyCurrency,
} from "@covalenthq/client-sdk";
import { TIME_SERIES_GROUP } from "@/utils/constants/shared.constants";
import { type TIME_SERIES_GROUP } from "@/utils/constants/shared.constants";
import { Fragment, useCallback, useEffect, useState } from "react";
import { type ColumnDef } from "@tanstack/react-table";
import { TableCell, TableRow } from "@/components/ui/table";
Expand Down Expand Up @@ -191,7 +191,7 @@ export const TokenTransfersListView: React.FC<TokenTransfersListViewProps> = ({
<div className="mr-4">
<TableHeaderSorting
align="right"
header_name={"Transsdaction"}
header_name={"Transaction"}
column={column}
icon={false}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Shared/TableList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
getCoreRowModel,
getSortedRowModel,
flexRender,
Row,
type Row,
} from "@tanstack/react-table";
import { useCallback, useState } from "react";
import { SkeletonTable } from "./SkeletonTable";
Expand Down

0 comments on commit b695243

Please sign in to comment.