We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a45812 commit cbfcea8Copy full SHA for cbfcea8
app/store/migrations/096.ts
@@ -52,6 +52,8 @@ const migration = async (state: unknown): Promise<unknown> => {
52
if (isObject(order) && fixCondition(order)) {
53
const cryptocurrency = isObject(order.cryptocurrency)
54
? order.cryptocurrency?.symbol
55
+ : typeof order.cryptocurrency === 'string'
56
+ ? order.cryptocurrency
57
: undefined;
58
59
const network = isObject(order.cryptocurrency)
0 commit comments