Skip to content

Commit ff39ce7

Browse files
committed
fix lint
Signed-off-by: Adam Setch <[email protected]>
1 parent f097f96 commit ff39ce7

File tree

14 files changed

+14
-0
lines changed

14 files changed

+14
-0
lines changed

src/components/DownloadButton.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export interface Props {
1010
1111
const { item } = Astro.props;
1212
---
13+
1314
<a
1415
href={item.url}
1516
class:list={[

src/components/Footer.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { siteMetadata, URLs } from '~/constants';
66
const { currentPathname } = Astro.props;
77
const isHomepage = currentPathname === '/';
88
---
9+
910
<div
1011
class:list={[
1112
"bg-gitify-footer text-white text-sm py-10 px-3",

src/components/GitHubRepo.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const loadRepoStats = async (): Promise<RepoStats> => {
4545
4646
const { forks, stars, latestReleaseName } = await loadRepoStats();
4747
---
48+
4849
<a
4950
href={URLs.GITHUB.REPO}
5051
target="_blank"

src/components/GoogleAnalytics.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { siteMetadata } from '../constants.ts';
44
const GTAG_ID = siteMetadata.google.gtag;
55
const GTAG_SRC = `https://www.googletagmanager.com/gtag/js?id=${GTAG_ID}`;
66
---
7+
78
<!-- Google tag (gtag.js) -->
89
<script async src={GTAG_SRC}></script>
910
<script>

src/components/Hero.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import notifications from '~/assets/notifications.png';
77
import LatestRelease from '~/components/LatestRelease.astro';
88
import Logo from '~/components/Logo.astro';
99
---
10+
1011
<div class="bg-gitify-hero">
1112
<div
1213
class="container flex flex-col md:flex-row lg:items-center max-w-5xl mx-auto px-12 py-8 lg:py-16"

src/components/LatestRelease.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ const loadInitialData = async (): Promise<HeroData> => {
9999
100100
const { downloadLinks, version, releaseDate } = await loadInitialData();
101101
---
102+
102103
<div class="text-sm mt-4">
103104
{
104105
version ? (

src/components/Logo.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const DARK_GRADIENT_END = '#555B6E';
1212
1313
const { isDark = false, className = '' } = Astro.props;
1414
---
15+
1516
<svg
1617
class={className}
1718
xmlns="http://www.w3.org/2000/svg"

src/components/Navbar.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import Logo from '~/components/Logo.astro';
77
const { currentPathname } = Astro.props;
88
const isHomepage = currentPathname === '/';
99
---
10+
1011
<nav class:list={["py-10 px-8", isHomepage && "bg-gitify-hero"]}>
1112
<div class="container max-w-5xl lg:mx-auto">
1213
<div

src/layouts/Layout.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const { title } = Astro.props;
1515
const pageTitle = `${title} - ${siteMetadata.title}`;
1616
const ogImage = `${siteMetadata.url}/images/social.png`;
1717
---
18+
1819
<!doctype html>
1920
<html lang="en">
2021
<head>

src/layouts/SectionRow.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const {
2222
isReversed = false,
2323
} = Astro.props;
2424
---
25+
2526
<div
2627
class:list={[
2728
"flex px-12 py-16 lg:py-24",

0 commit comments

Comments
 (0)