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

Only show start project button in conversations #6626

Merged
merged 2 commits into from
Feb 6, 2025
Merged
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useTranslation } from "react-i18next";
import { useLocation } from "react-router";
import { I18nKey } from "#/i18n/declaration";
import NewProjectIcon from "#/icons/new-project.svg?react";
import { TooltipButton } from "./tooltip-button";
Expand All @@ -9,7 +10,12 @@ interface ExitProjectButtonProps {

export function ExitProjectButton({ onClick }: ExitProjectButtonProps) {
const { t } = useTranslation();
const location = useLocation();
const startNewProject = t(I18nKey.PROJECT$START_NEW);

// Only show the button in the conversations page
if (!location.pathname.startsWith("/conversations")) return null;

return (
<TooltipButton
tooltip={startNewProject}
Expand Down