Skip to content
Snippets Groups Projects
Commit d3bf4e16 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: arithmetic – it’s a thing

parent bf29434c
No related branches found
No related tags found
No related merge requests found
...@@ -316,7 +316,7 @@ type UseCopyOptions<T> = { ...@@ -316,7 +316,7 @@ type UseCopyOptions<T> = {
} }
export function useCopy<T>(state: MaybeRefOrGetter<T>, options: UseCopyOptions<T> = {}) { export function useCopy<T>(state: MaybeRefOrGetter<T>, options: UseCopyOptions<T> = {}) {
const shallow = options?.shallow ?? false const shallow = options?.shallow ?? false
const debounce = options?.debounce ?? DEFAULT_DEBOUNCE_SECONDS * 1000 const debounce = (options?.debounce ?? DEFAULT_DEBOUNCE_SECONDS) * 1000
const _clone = options?.clone ?? cloneDeep const _clone = options?.clone ?? cloneDeep
const _isEqual = options?.isEqual ?? isEqual const _isEqual = options?.isEqual ?? isEqual
const _save = options?.save const _save = options?.save
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment