Skip to content

Commit

Permalink
Run eslint / prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
0x1eef committed Oct 25, 2023
1 parent a3d9dd1 commit 3626eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/js/pages/SurahIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ function SurahIndex({ locale, surahs, t }: Props) {
return (
<div ref={ref} className={classNames("invisible", "content", "theme", theme, locale)}>
<h1>
<a href={`/${locale}/`}>
{t(locale, "TheNobleQuran")}
</a>
<a href={`/${locale}/`}>{t(locale, "TheNobleQuran")}</a>
</h1>
<div className="row dropdown-row">
<ThemeSelect theme={theme} setTheme={setTheme} />
Expand Down
4 changes: 1 addition & 3 deletions src/js/pages/SurahStream.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ function SurahStream({ node, recitations, locale, paused, t }: Props) {
{readyToRender && (
<>
<h1>
<a href={`/${locale}/`}>
{t(locale, "TheNobleQuran")}
</a>
<a href={`/${locale}/`}>{t(locale, "TheNobleQuran")}</a>
</h1>
<div className="row dropdown-row">
<ThemeSelect theme={theme} setTheme={setTheme} />
Expand Down

0 comments on commit 3626eaa

Please sign in to comment.