[REF]: refactor some eslint issues

This commit is contained in:
behnamrhp 2023-05-19 18:48:23 +03:00
parent f80a38d4aa
commit 441d52edc6
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,5 @@
import React from "react";
export interface IUsersListVM {}
export type userListReturnType = {
selectedRowId: string;
setSelectedRowId: React.Dispatch<React.SetStateAction<string>>;

View File

@ -18,7 +18,7 @@ export default function Sidebar() {
: ""
}`}
>
<img src={routesData[key].icon} className="mr-2" />
<img src={routesData[key].icon} alt="page icon" className="mr-2" />
<div>{routesData[key].title}</div>
</Link>
);