Skip to content

Commit

Permalink
Fix linter (#8600)
Browse files Browse the repository at this point in the history
  • Loading branch information
flvndvd authored Nov 12, 2024
1 parent 8afb58c commit ca4c366
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions front/components/poke/spaces/columns.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { IconButton } from "@dust-tt/sparkle";
import { IconButton, LinkWrapper } from "@dust-tt/sparkle";
import type { SpaceType, WorkspaceType } from "@dust-tt/types";
import { ArrowsUpDownIcon } from "@heroicons/react/20/solid";
import type { ColumnDef } from "@tanstack/react-table";

import PokeLink from "@app/components/poke/shadcn/ui/link";
import { formatTimestampToFriendlyDate } from "@app/lib/utils";

export function makeColumnsForSpaces(
Expand All @@ -16,7 +15,9 @@ export function makeColumnsForSpaces(
const sId: string = row.getValue("sId");

return (
<PokeLink href={`/poke/${owner.sId}/spaces/${sId}`}>{sId}</PokeLink>
<LinkWrapper href={`/poke/${owner.sId}/spaces/${sId}`}>
{sId}
</LinkWrapper>
);
},
header: ({ column }) => {
Expand Down

0 comments on commit ca4c366

Please sign in to comment.