Skip to content

Commit 5713de8

Browse files
1046prtrecursivezero
authored andcommitted
[RZA-250154]: fix the lint issue
1 parent 8134f26 commit 5713de8

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

src/layouts/Base.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ const {
2222
<ThemeProvider />
2323
<Shortcut />
2424
<Header title={title}>
25-
<slot name="header-left" slot="left" />
26-
<slot name="header-right" slot="right" />
27-
</Header>
25+
<slot name="header-left" slot="left" />
26+
<slot name="header-right" slot="right" />
27+
</Header>
2828
<main id="main" class="main">
2929
<div class="sidebar">{sidebar && <Menu />}</div>
3030
<div class="content">

src/pages/akshar.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import BaseLayout from "@/layouts/Base";
88
99
const meta = {
1010
title: "Akshar",
11-
description:
12-
"Learn alphabets of different Indian languages by alphabet comparison."
11+
description: "Learn alphabets of different Indian languages by alphabet comparison."
1312
};
1413
---
1514

src/pages/blog/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if (!Content) {
3636
}
3737
3838
const meta = {
39-
title: "Stories",
39+
title: "Blog",
4040
description: validatedData.description
4141
};
4242
---

src/pages/varnmala/play.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import BackButton from "@/components/BackButton.astro";
66
import SharePopover from "@/components/ShareButton.astro";
77
import KeyboardTrigger from "@/components/KeyboardTrigger.astro";
88
9-
const meta = {
9+
const meta = {
1010
title: "Hear and Play",
11-
description: "Press any letter key to display and hear it. Customize the voice which you like."
12-
}
11+
description: "Press any letter key to display and hear it. Customize the voice which you like."
12+
};
1313
---
1414

1515
<BaseLayout meta={meta}>

0 commit comments

Comments
 (0)