Skip to content

Commit

Permalink
use prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ka8725 committed Dec 3, 2023
1 parent 70221f7 commit 7732b17
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Deploy Next.js site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
branches: ['main']

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -21,7 +21,7 @@ permissions:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
group: 'pages'
cancel-in-progress: false

jobs:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "20"
node-version: '20'
cache: ${{ steps.detect-package-manager.outputs.manager }}
- name: Setup Pages
uses: actions/configure-pages@v3
Expand Down
3 changes: 2 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ const inter = Inter({ subsets: ['latin'] });

export const metadata: Metadata = {
title: 'BudgetingKid - Foster good financial habits in your children',
description: 'Empower your kids with financial literacy and effortlessly manage their allowances. Sign up for our free app today and start fostering a financially savvy future for your children.',
description:
'Empower your kids with financial literacy and effortlessly manage their allowances. Sign up for our free app today and start fostering a financially savvy future for your children.',
};

export default function RootLayout({
Expand Down
1 change: 0 additions & 1 deletion components/Typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export function H2({ children, id }: PropsWithChildren<{ id?: string }>) {
);
}


export function H3({
children,
className,
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const nextConfig = {};

if (process.env.NODE_ENV === 'production') {
nextConfig.output = 'export'
nextConfig.output = 'export';
}

module.exports = nextConfig;

0 comments on commit 7732b17

Please sign in to comment.