Skip to content
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
2 changes: 2 additions & 0 deletions frontend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,5 @@ TRUST_FORWARDED_HEADERS=0

# emergency switch
RATE_LIMIT_DISABLED=0

GROQ_API_KEY=
Comment on lines +100 to +101
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add trailing newline to satisfy dotenv-linter.
The linter reports no blank line at EOF. Add a final newline to clear the warning.

🧰 Tools
🪛 dotenv-linter (4.0.0)

[warning] 101-101: [EndingBlankLine] No blank line at the end of the file

(EndingBlankLine)

🤖 Prompt for AI Agents
In `@frontend/.env.example` around lines 100 - 101, Add a final newline at end of
file frontend/.env.example so the GROQ_API_KEY= line is terminated by a trailing
newline (i.e., ensure the file ends with a blank line/linefeed) to satisfy
dotenv-linter's EOF newline check.

59 changes: 0 additions & 59 deletions frontend/app/[locale]/contacts/page.tsx

This file was deleted.

4 changes: 1 addition & 3 deletions frontend/app/[locale]/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,7 @@ export default async function DashboardPage({ params }: { params: Promise<{ loca
</p>
</div>

<Link href="/contacts" className={outlineBtnStyles}>
{t('supportLink')}
</Link>
<span className={outlineBtnStyles}>{t('supportLink')}</span>
</header>
<QuizSavedBanner />
<div className="grid gap-8 md:grid-cols-2">
Expand Down
Loading