fix: complete audit security and frontend gaps
This commit is contained in:
@@ -1,9 +1,5 @@
|
||||
<script lang="ts">
|
||||
export type Suggestion = {
|
||||
kind: 'task' | 'note' | 'source';
|
||||
title: string;
|
||||
body: string;
|
||||
};
|
||||
import type { Suggestion } from './types';
|
||||
|
||||
export let suggestions: Suggestion[] = [];
|
||||
export let onConfirm: (selected: Suggestion[]) => void;
|
||||
|
||||
5
apps/web/src/features/inbox/types.ts
Normal file
5
apps/web/src/features/inbox/types.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export type Suggestion = {
|
||||
kind: 'task' | 'note' | 'source';
|
||||
title: string;
|
||||
body: string;
|
||||
};
|
||||
Reference in New Issue
Block a user