Skip to content

Commit

Permalink
chore: small sonar issues fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Dec 4, 2024
1 parent 759cc74 commit 2ffa767
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import SpatialCheckbox from "../../../SpatialCheckbox";
interface ISearchScreenDataTable {
rows: OpeningsSearch[];
headers: ITableHeader[];
defaultColumns: ITableHeader[];
handleCheckboxChange: (columnKey: string) => void;
toggleSpatial: () => void;
showSpatial: boolean;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/TableCellContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const TableCellContent: React.FC<TableCellContentProps> = ({
/>
</div>)}
<ActionButtons
favorited={row.favourite as boolean}
favorited={row.favourite}
rowId={row.openingId.toString()}
/>
</div>
Expand Down

0 comments on commit 2ffa767

Please sign in to comment.