feedback tab

This commit is contained in:
jackiettran
2025-10-31 16:48:18 -04:00
parent 99aa0b3bdc
commit 16272ba373
13 changed files with 812 additions and 1 deletions

View File

@@ -293,3 +293,13 @@ export interface RefundPreview {
reason: string;
totalAmount: number;
}
export interface Feedback {
id: string;
userId: string;
feedbackText: string;
userAgent?: string;
url?: string;
createdAt: string;
updatedAt: string;
}