mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Only show start project button in conversations (#6626)
Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com>
This commit is contained in:
parent
8140d2e05a
commit
669e284dc5
@ -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";
|
||||
@ -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}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user