Skip to content

Commit

Permalink
Remove system banner
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed May 22, 2024
1 parent 3c8d597 commit 69406f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/dashboard/src/app/[locale]/(app)/@login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default async function Login(params) {
className="border-t-[1px] pt-2 mt-6"
>
<AccordionItem value="item-1" className="border-0">
<AccordionTrigger className="justify-start space-x-2 justify-center flex text-sm">
<AccordionTrigger className="justify-start space-x-2 flex text-sm">
<span>More options</span>
</AccordionTrigger>
<AccordionContent className="mt-4">
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SystemBanner } from "@/components/system-banner";
// import { SystemBanner } from "@/components/system-banner";
import "@/styles/globals.css";
import { LogSnagProvider } from "@midday/events/client";
import { cn } from "@midday/ui/cn";
Expand Down Expand Up @@ -48,7 +48,7 @@ export default function Layout({
"whitespace-pre-line overscroll-none"
)}
>
<SystemBanner />
{/* <SystemBanner /> */}
{children}
<SpeedInsights />
<Toaster />
Expand Down
9 changes: 4 additions & 5 deletions apps/dashboard/src/components/system-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ export function SystemBanner() {
return (
<div className="p-1 fixed left-0 right-0 top-0 bg-[#FFD02B] z-50 text-center flex items-center justify-center text-black text-sm font-medium">
<span>
We are currently experiencing some issues. For the latest updates, you
can go{" "}
We are currently investigating a technical issue, follow{" "}
<a href="https://status.midday.ai" className="underline">
here
</a>
.
status.midday.ai
</a>{" "}
for updates.
</span>
</div>
);
Expand Down

0 comments on commit 69406f6

Please sign in to comment.