chore: replace prettier with oxfmt (#8676)

This commit is contained in:
sriram veeraghanta 2026-03-02 20:40:50 +05:30 committed by GitHub
parent 9ee73d57ef
commit 41abaffc6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
1008 changed files with 4046 additions and 4027 deletions

View file

@ -16,22 +16,22 @@ export function MaintenanceMessage() {
return (
<>
<div className="flex flex-col gap-2.5">
<h1 className="text-18 font-semibold text-primary text-left">
<h1 className="text-left text-18 font-semibold text-primary">
&#x1F6A7; Looks like Plane didn&apos;t start up correctly!
</h1>
<span className="text-14 font-medium text-secondary text-left">
<span className="text-left text-14 font-medium text-secondary">
Some services might have failed to start. Please check your container logs to identify and resolve the issue.
If you&apos;re stuck, reach out to our support team for more help.
</span>
</div>
<div className="flex items-center justify-start gap-6 mt-1">
<div className="mt-1 flex items-center justify-start gap-6">
{linkMap.map((link) => (
<div key={link.key}>
<a
href={link.value}
target="_blank"
rel="noopener noreferrer"
className="text-accent-primary hover:underline text-13"
className="text-13 text-accent-primary hover:underline"
>
{link.label}
</a>