Skip to content

Commit 2c07218

Browse files
committed
[lint]: fixed long line by breaking it into pieces;
1 parent 5a177e3 commit 2c07218

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

src/component/landing/Landing.tsx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,22 @@ class UserService {
3434

3535
// return {
3636
// data: [
37-
// { id: 1, name: 'John Doe', age: 30, createdAt: '2023-01-01', status: 'active', isAdmin: true },
38-
// { id: 2, name: 'Jane Smith', age: 25, createdAt: '2023-02-01', status: 'inactive', isAdmin: false },
37+
// {
38+
// id: 1,
39+
// name: 'John Doe',
40+
// age: 30,
41+
// createdAt: '2023-01-01',
42+
// status: 'active',
43+
// isAdmin: true
44+
// },
45+
// {
46+
// id: 2,
47+
// name: 'Jane Smith',
48+
// age: 25,
49+
// createdAt: '2023-02-01',
50+
// status: 'inactive',
51+
// isAdmin: false
52+
// },
3953
// ],
4054
// total: 2,
4155
// };

0 commit comments

Comments
 (0)