Skip to content

Commit 9e0b1b9

Browse files
committed
Merge branch 'fix-ssr-issue' of https://github.com/TanStack/form into fix-ssr-issue
2 parents 388b78e + 1c651e7 commit 9e0b1b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/form-core/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ export const throttleFormState = liteThrottle(
618618

619619
// Do not use a serialize and deserialize method like JSON.stringify/parse
620620
// as that will drop functions, dates, undefined, Infinity, NaN, etc.
621-
export function deepCopy<T>(obj: T): T{
621+
export function deepCopy<T>(obj: T): T {
622622
if (obj === null || typeof obj !== 'object') {
623623
return obj
624624
}

0 commit comments

Comments
 (0)