Skip to content

Commit

Permalink
fix: 🐛 adjust shelter type in ShelterTable
Browse files Browse the repository at this point in the history
  • Loading branch information
willMoraes committed Jun 2, 2024
1 parent f7a71c7 commit a1dc238
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import Link from "next/link";
import { type z } from "zod";
import { type shelterSchema } from "~/schemas/shelter";
import { type apiShelterSchema } from "~/schemas/shelter";
import { type ColumnDef } from "@tanstack/react-table";
import { FiEdit } from "react-icons/fi";

export type ShelterTable = z.infer<typeof shelterSchema>;
export type ShelterTable = z.infer<typeof apiShelterSchema>;

export const columns: ColumnDef<ShelterTable>[] = [
{
Expand Down

0 comments on commit a1dc238

Please sign in to comment.