Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add back create fuels template metadata #2853

Merged
merged 3 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/curly-forks-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-fuels": patch
---

fix: add back `create fuels` template metadata
4 changes: 4 additions & 0 deletions apps/create-fuels-counter-guide/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ export default function RootLayout({ children }: RootLayoutProps) {

return (
<html lang="en" className="bg-black text-white">
<head>
<link rel="icon" href="/fuel.ico" />
<title>Fuel dApp</title>
</head>
<body>
<React.StrictMode>
<QueryClientProvider client={queryClient}>
Expand Down
4 changes: 4 additions & 0 deletions templates/nextjs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ export default function RootLayout({ children }: RootLayoutProps) {

return (
<html lang="en" className="bg-black text-white">
<head>
<link rel="icon" href="/fuel.ico" />
<title>Fuel dApp</title>
</head>
<body>
<React.StrictMode>
<QueryClientProvider client={queryClient}>
Expand Down
Loading