Skip to content

Commit f84b9e7

Browse files
committed
perf(operations-queue): use shallowRef instead deep ref
1 parent b10d8d6 commit f84b9e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/OperationsQueue.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const {
2121
refreshState,
2222
} = useConnector()
2323
24-
const isExecuting = ref(false)
25-
const otpInput = ref('')
24+
const isExecuting = shallowRef(false)
25+
const otpInput = shallowRef('')
2626
2727
/** Check if any active operation needs OTP */
2828
const hasOtpFailures = computed(() =>

0 commit comments

Comments
 (0)