Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Mar 4, 2024
1 parent a1cf5a7 commit fea6636
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export default function Page() {
<div className="flex flex-col justify-between gap-4 @container/sections @6xl/content:flex-row @6xl/content:gap-8">
<details className="flex w-full flex-col @container/schedule @6xl/content:w-1/2">
<summary className="my-4 text-3xl font-medium">Schedule</summary>
{!isAvailable ? null :
favorites.filter((v) => v.predefined === true).length === 0 ? (
{!isAvailable ? null : favorites.filter((v) => v.predefined === true)
.length === 0 ? (
<p className="mb-4 text-lg text-text-secondary/75">Nothing here.</p>
) : (
<div className="grid grid-cols-1 justify-stretch gap-4 @lg/schedule:grid-cols-2 @4xl/schedule:grid-cols-3">
Expand Down Expand Up @@ -92,8 +92,8 @@ export default function Page() {
</details>
<details className="flex w-full flex-col @container/favorites @6xl/content:w-1/2">
<summary className="my-4 text-3xl font-medium">Favorites</summary>
{!isAvailable ? null :
favorites.filter((v) => v.predefined === false).length === 0 ? (
{!isAvailable ? null : favorites.filter((v) => v.predefined === false)
.length === 0 ? (
<p className="mb-4 text-lg text-text-secondary/75">
Add favorite calendars using star button.
<br />
Expand Down

0 comments on commit fea6636

Please sign in to comment.