Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit 8b9d036

Browse files
fix: blank page caused by disallowed synthetics (#7305)
Co-authored-by: Matin shafiei <matin@deriv.com>
1 parent cd9ec06 commit 8b9d036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/javascript/app/common/active_symbols.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const submarket_order = {
2626
};
2727

2828
const ActiveSymbols = (() => {
29-
const groupBy = (xs, key) => (
29+
const groupBy = (xs = [], key) => (
3030
xs.reduce((rv, x) => {
3131
(rv[x[key]] = rv[x[key]] || []).push(x);
3232
return rv;

0 commit comments

Comments
 (0)