Skip to content

Commit

Permalink
fixed indents
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktoriiaNakoryk committed Feb 15, 2024
1 parent da567e4 commit 77d334d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const Sidebar: React.FC<
{
onCreateNewChat: () => void;
} & ChatHistoryProps
> = ({ history, onHistoryItemClick, onCreateNewChat, onDeleteHistoryItem }) => {
> = ({ history, onHistoryItemClick, onCreateNewChat, onDeleteHistoryItem }) => {
const [isOpenedStatistic, setIsOpenedStatistic] = useState(false);

const handleCloseStatistic = () => {
Expand Down
16 changes: 8 additions & 8 deletions src/services/refact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,16 +221,16 @@ export type RefactTableData = {
};

export type ColumnName =
| "lang"
| "refact"
| "human"
| "total"
| "refact_impact"
| "completions";
| "lang"
| "refact"
| "human"
| "total"
| "refact_impact"
| "completions";

export type CellValue = string | number;

export type FormatCellValue = (
columnName: string,
cellValue: string | number,
columnName: string,
cellValue: string | number,
) => string | number;

0 comments on commit 77d334d

Please sign in to comment.