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 6d8dd81 commit 4f9d6c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/RequestBoardTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ export default function RequestBoardTable({ openDetails }: { openDetails: () =>
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
key={skillItem.id}
Expand Down

0 comments on commit 4f9d6c9

Please sign in to comment.