Implemented new API functions to fetch and update agent node profiles, enhancing the management capabilities for agent data. This addition improves the overall functionality of the admin agents console, allowing for better user interaction with agent profiles. Updated related types for improved type safety and clarity in the codebase.
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
"use client";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export function InvalidPlayerId(): React.ReactElement {
|
|
const { t } = useTranslation("players");
|
|
|
|
return <p className="text-destructive text-sm">{t("invalidPlayerId")}</p>;
|
|
}
|