Skip to content

Commit

Permalink
chore: add console statement
Browse files Browse the repository at this point in the history
  • Loading branch information
satyam73 committed Mar 31, 2024
1 parent e7a15a6 commit 8367060
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/RequestBoardTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,10 @@ import BoardDetailsRow from "./BoardDetailsRow";
import { requestBoardData } from "../../../__mocks__/requestBoardData";
import { SKILL_LABEL_COLOR_MAPPING } from "@/constants/request-board";
import { useGetEndorsements } from "@/services/endorsements";
import { useGetSelfUser } from "@/services/users";

export default function RequestBoardTable({ openDetails }: { openDetails: () => void }) {
const { data: endorsements, isLoading } = useGetEndorsements();
console.log(endorsements, isLoading); //will remove this when BE APIs are ready
const user = useGetSelfUser();

console.log(user);

const renderBoardDetailsRow = requestBoardData.map((skillItem, index) => (
<BoardDetailsRow
Expand Down

0 comments on commit 8367060

Please sign in to comment.