Fix: nextjs build.

This commit is contained in:
muzam1l
2023-03-23 16:55:32 +05:30
parent b653d9a9cb
commit b9edfcd63b

View File

@@ -155,7 +155,7 @@ export const prepareTransaction = (data: any) => {
}
// account
if (_value.$type === 'account') {
options[field] = _value.$value?.toString() || ""
options[field] = (_value.$value as any)?.toString() || ""
}
// json
if (_value.$type === 'json') {