From 9722e65ee2cc73dad122e78b0aa5ccb18ac98d99 Mon Sep 17 00:00:00 2001 From: Daniel Spaude Date: Tue, 29 Nov 2022 22:23:11 +0300 Subject: [PATCH] qrcode: cleanup --- packages/nc-gui/composables/useShowNotEditableWarning.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/nc-gui/composables/useShowNotEditableWarning.ts b/packages/nc-gui/composables/useShowNotEditableWarning.ts index c0702949b5..ffeea10cba 100644 --- a/packages/nc-gui/composables/useShowNotEditableWarning.ts +++ b/packages/nc-gui/composables/useShowNotEditableWarning.ts @@ -1,12 +1,6 @@ -// import type { Ref } from 'vue' -// import type { ViewType } from 'nocodb-sdk' - const timeout = 3000 // in ms -// export default function useShowNotEditableWarning(view: Ref) { export default function useShowNotEditableWarning() { - // console.log(view) - const showEditNonEditableFieldWarning = refAutoReset(false, timeout) const showClearNonEditableFieldWarning = refAutoReset(false, timeout)