Skip to content

Commit

Permalink
fix: missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
arian-garshi authored Aug 7, 2023
1 parent d147e83 commit 6ab8eb1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Components/JIP33Table/JIP33Table.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {
Dispatch, SetStateAction, useMemo, useContext,
Dispatch, SetStateAction, useMemo, useContext, useState,
} from "react"
import { ColDef } from "@ag-grid-community/core"
import { AgGridReact } from "@ag-grid-community/react"
Expand All @@ -9,6 +9,7 @@ import { comment, comment_chat } from "@equinor/eds-icons"
import { ReviewComment } from "../../Models/ReviewComment"
import { ColorLegendEnum } from "./JIP33ColorLegendEnums"
import { ViewContext } from "../../Context/ViewContext"
import EquipmentListReview from "../../Components/EquipmentListView/EquipmentListReview"

interface Props {
rowData: object[]
Expand Down
1 change: 0 additions & 1 deletion src/Components/SideSheet/SheetContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ const SheetContainer: React.FC<Props> = ({
const { activeSheetTab, setActiveSheetTab } = useContext(ViewContext)

const handleTabChange = (index: number) => {
console.log(index)
setActiveSheetTab(index)
}

Expand Down
1 change: 0 additions & 1 deletion src/api/CommentService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { ReviewComment } from "../Models/ReviewComment"
import { BaseService } from "./BaseService"

import { config, GetToken, LoginAccessTokenKey } from "./config"

class CommentService extends BaseService {
Expand Down

0 comments on commit 6ab8eb1

Please sign in to comment.