Skip to content

Commit 2f7eb50

Browse files
jmchiltondavelopez
andauthored
Apply suggestions from code review
Co-authored-by: David López <46503462+davelopez@users.noreply.github.com>
1 parent f99c9b0 commit 2f7eb50

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/components/Upload/DefaultRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const { isAnonymous } = storeToRefs(useUserStore());
2525
const fileField: Ref<HTMLInputElement | null> = ref(null);
2626
2727
interface Props {
28-
deferred?: boolean | undefined;
28+
deferred?: boolean;
2929
extension: string;
3030
fileContent: string;
3131
fileMode: string;

client/src/components/Upload/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface FileStream {
2222

2323
export interface UploadItem {
2424
dbKey: string;
25-
deferred?: boolean | undefined;
25+
deferred?: boolean;
2626
enabled: boolean;
2727
extension: string;
2828
fileContent: string;

0 commit comments

Comments
 (0)