Skip to content

Commit 6ae86f1

Browse files
fix after review
1 parent 0e663d4 commit 6ae86f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/endpoints/dapp-config/dapp.config.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ export class DappConfigService {
2525
const chainId = networkConfig.erd_chain_id;
2626

2727
const overrides: Partial<DappConfig> = {};
28-
if (refreshRate !== undefined && refreshRate !== null) {
28+
if (refreshRate != null) {
2929
overrides.refreshRate = refreshRate;
3030
}
31-
if (chainId) {
31+
if (chainId != null) {
3232
overrides.chainId = chainId;
3333
}
3434

0 commit comments

Comments
 (0)