mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 01:21:24 +02:00
Merge branch 'dev-1' into dev
This commit is contained in:
commit
d41d060bb3
1770 changed files with 168028 additions and 31031 deletions
|
|
@ -1,5 +1,9 @@
|
|||
<script lang="ts">
|
||||
import type { FeedbackService, Feedback } from '@manacore/shared-feedback-service';
|
||||
import type {
|
||||
FeedbackService,
|
||||
Feedback,
|
||||
CreateFeedbackInput,
|
||||
} from '@manacore/shared-feedback-service';
|
||||
import FeedbackForm from './FeedbackForm.svelte';
|
||||
import FeedbackList from './FeedbackList.svelte';
|
||||
|
||||
|
|
@ -66,7 +70,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
async function handleSubmit(input: { title?: string; feedbackText: string; category?: string }) {
|
||||
async function handleSubmit(input: CreateFeedbackInput) {
|
||||
isSubmitting = true;
|
||||
try {
|
||||
await feedbackService.createFeedback(input);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue