We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe1d93e commit edb9d20Copy full SHA for edb9d20
1 file changed
src/app/idea/page.tsx
@@ -18,7 +18,6 @@ import { type Team } from "@/data/schema";
18
import { useQuery, useQueryClient } from "@tanstack/react-query";
19
import { type ColumnDef } from "@tanstack/react-table";
20
import { useEffect, useState } from "react";
21
-import toast from "react-hot-toast";
22
23
export default function TeamsIdeasTable() {
24
const queryClient = useQueryClient();
@@ -62,7 +61,6 @@ export default function TeamsIdeasTable() {
62
61
void queryClient.invalidateQueries({
63
queryKey: ["idea"],
64
});
65
- toast.error(selectedTrack);
66
}, [selectedTrack]);
67
const handlePrevPage = () => {
68
if (cursorHistory.length > 0) {
0 commit comments