Openstatus www.openstatus.dev

chore: remove info alert dialog (#969)

authored by

Maximilian Kaske and committed by
GitHub
2f9c7aa0 e49db458

-22
-22
apps/web/src/app/app/[workspaceSlug]/(dashboard)/layout.tsx
··· 1 - import { InfoAlertDialog } from "@/components/dashboard/info-alert-dialog"; 2 1 import { AppHeader } from "@/components/layout/header/app-header"; 3 2 import { api } from "@/trpc/server"; 4 - import Link from "next/link"; 5 3 import { notFound } from "next/navigation"; 6 4 import type { ReactNode } from "react"; 7 5 import { WorkspaceClientCookie } from "../worskpace-client-cookie"; ··· 28 26 {children} 29 27 </main> 30 28 <WorkspaceClientCookie {...{ workspaceSlug }} /> 31 - <InfoAlertDialog 32 - id="status-report-location-change" 33 - title="An update on Status Reports" 34 - expires={365} // 1 year - TODO: delete the block after 30 days 35 - description={ 36 - <> 37 - Each report is now saved within a{" "} 38 - <span className="font-semibold text-foreground">Status Page</span>. 39 - Select a page to view all reports for related to it.{" "} 40 - <Link 41 - href="/changelog/status-report-location-change" 42 - className="underline underline-offset-4 hover:text-primary hover:no-underline" 43 - > 44 - Read changelog 45 - </Link> 46 - . 47 - </> 48 - } 49 - workspaceSlug={workspaceSlug} 50 - /> 51 29 </div> 52 30 ); 53 31 }