Fix - added null type to prompt for reset

This commit is contained in:
KavyapriyaJG
2025-04-17 00:27:12 +05:30
parent 0b1c00baab
commit 9996be166f

View File

@@ -43,7 +43,7 @@ const PromptsTab = ({
clearPrompts: () => void;
getPrompt: (name: string, args: Record<string, string>) => void;
selectedPrompt: Prompt | null;
setSelectedPrompt: (prompt: Prompt) => void;
setSelectedPrompt: (prompt: Prompt | null) => void;
handleCompletion: (
ref: PromptReference | ResourceReference,
argName: string,