From d147bb2c9921d032dbbe447cfc3eecbe329bff75 Mon Sep 17 00:00:00 2001 From: Jesper Hodge Date: Wed, 5 Jul 2023 19:01:38 +0000 Subject: [PATCH] fix: lint --- src/editors/containers/VideoUploadEditor/hooks.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/editors/containers/VideoUploadEditor/hooks.js b/src/editors/containers/VideoUploadEditor/hooks.js index 415e96992..b174075d4 100644 --- a/src/editors/containers/VideoUploadEditor/hooks.js +++ b/src/editors/containers/VideoUploadEditor/hooks.js @@ -14,8 +14,11 @@ export const { } = appHooks; export const state = { + // eslint-disable-next-line react-hooks/rules-of-hooks loading: (val) => React.useState(val), + // eslint-disable-next-line react-hooks/rules-of-hooks errorMessage: (val) => React.useState(val), + // eslint-disable-next-line react-hooks/rules-of-hooks textInputValue: (val) => React.useState(val), };