fix(client): fix lint issues in scripts (#8621)
This commit is contained in:
@@ -11,8 +11,8 @@ export function useNoteCapture(props: {
|
||||
const note = props.note;
|
||||
const connection = $i ? stream : null;
|
||||
|
||||
function onStreamNoteUpdated(data): void {
|
||||
const { type, id, body } = data;
|
||||
function onStreamNoteUpdated(noteData): void {
|
||||
const { type, id, body } = noteData;
|
||||
|
||||
if (id !== note.value.id) return;
|
||||
|
||||
|
Reference in New Issue
Block a user