make hint optional in model

This commit is contained in:
Joel Wetzell
2026-04-03 19:11:07 -05:00
parent 946a296652
commit 774005f4bf
+1 -1
View File
@@ -18,7 +18,7 @@ export type ParamsInfo = {
export type ParamInfo = {
key: string;
display: string;
hint: string;
hint?: string;
type: string;
placeholder?: string;
options?: string[];