Skip to content

Commit

Permalink
fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelPepe committed Oct 12, 2023
1 parent da40ff9 commit 23d3d1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/table/Table.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { TablePropsI } from './TableProps.ts';
import styles from './Table.module.scss';
import { FC, useState } from 'react';
import { FC } from 'react';

export const Table: FC<TablePropsI> = () => {
const [pools, setPools] = useState([
const pools = [
{
address: '0x4681de1e080e889fad73853fa7adaa0be39e433f',
date: 1696954119482,
Expand Down Expand Up @@ -46,7 +46,7 @@ export const Table: FC<TablePropsI> = () => {
profitPercent: 10,
profit: 30000,
},
]);
];

const tableRowMap = {
date: { title: 'Date', component: 'some tsx' },
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/tableCells/dateCell/dateCell.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FC } from 'react';
import styles from './dateCell.module.scss';
// import styles from './dateCell.module.scss';
import { DateCellPropsI } from './dateCellProps';

export const DateCell: FC<DateCellPropsI> = () => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/PoolsPage/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './PoolsPage';
export * from './PoolsPage';

0 comments on commit 23d3d1d

Please sign in to comment.