Skip to content

Commit

Permalink
DEAR-125: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
baurnick committed Jul 19, 2024
1 parent 6b20b2f commit 907b629
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion app/(main)/team/components/TeamTable/columns.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable @typescript-eslint/no-redeclare */
/* eslint-disable import/prefer-default-export */

'use client';

Expand All @@ -17,7 +18,6 @@ import { ChevronRight, Ellipsis } from 'lucide-react';
import { Button } from '@components/ui/Buttons/Button';
import { Team } from '@/types/TeamType';


export const columns: ColumnDef<Team>[] = [
{
accessorKey: 'id',
Expand Down
2 changes: 0 additions & 2 deletions app/(main)/team/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ const TeamPage: React.FC = () => {
const { userId } = useAuth();
const { data, isLoading, error } = useSWRClient<Team[]>(`/v1/team/user/${userId}`);

console.log(data);

if (isLoading) return <Loading />;
if (error) return <Error errorMessage="It seems there was a problem loading your teams." action="/" showContact />;

Expand Down

0 comments on commit 907b629

Please sign in to comment.