Skip to content

Commit

Permalink
不要な talk_box 一覧取得を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
hmatsu47 authored Jul 8, 2024
1 parent 0ed9bfd commit 87d8fbd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/list/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { Card, CardHeader, CardContent } from "../../components/ui/card";
import { getListHaikus } from "../../lib/actions";
import ListClient from "./ListClient";
import LoadingSpinner from "../../components/LoadingSpinner";
import { Suspense } from "react";

export default async function ListPage() {
const haikus = await getListHaikus();
export default function ListPage() {
const isAdminToken = process.env.IS_ADMIN_TOKEN ?? "";

return (
Expand Down

0 comments on commit 87d8fbd

Please sign in to comment.