Skip to content

Commit c5300a4

Browse files
fix: eslint errors
1 parent 7f208fe commit c5300a4

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

React/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import DataGrid, {
1111
SearchPanel,
1212
} from 'devextreme-react/data-grid';
1313
import type { ButtonGroupTypes } from 'devextreme-react/button-group';
14-
import type {ChatTypes} from 'devextreme-react/chat';
14+
import type { ChatTypes } from 'devextreme-react/chat';
1515
import type dxChat from 'devextreme/ui/chat';
1616
import 'devextreme/dist/css/dx.fluent.blue.light.css';
1717
import './App.css';

React/src/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Sale } from "./types";
1+
import type { Sale } from './types';
22

33
const SERVER_URL = 'http://localhost:5005/api/ai';
44
export const AI_COLUMN_URL = `${SERVER_URL}/grid-column`;

React/src/types.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export interface Sale {
2-
Id: number;
3-
Product: string;
4-
Amount: number;
5-
Region: string;
6-
Sector: string;
7-
SaleDate: string;
8-
Customer: string;
9-
Channel: string;
10-
Discount: string;
11-
}
2+
Id: number;
3+
Product: string;
4+
Amount: number;
5+
Region: string;
6+
Sector: string;
7+
SaleDate: string;
8+
Customer: string;
9+
Channel: string;
10+
Discount: string;
11+
}

0 commit comments

Comments
 (0)