-
Notifications
You must be signed in to change notification settings - Fork 8
fix(undefind http) #749
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix(undefind http) #749
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ window['config'] = { | |
api_list : [ | ||
"https://api.zilliqa.com", | ||
"https://ssn-zilliqa.cex.io/api", | ||
// "https://ssn.ignitedao.io/api", | ||
"https://ssn.ignitedao.io/api", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This API was commented out because it was not working properly. Have you checked that it works now? |
||
"https://ssn.zillet.io", | ||
"https://zil-staking.ezil.me/api", | ||
"https://staking-zil.kucoin.com/api", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2067,4 +2067,8 @@ input:focus { | |
|
||
.cover-img{ | ||
object-fit: cover; | ||
} | ||
} | ||
|
||
iframe { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this needed? |
||
z-index: -1 !important; | ||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -176,7 +176,7 @@ function Dashboard(props: any) { | |||||
|
||||||
if (zilPay) { | ||||||
networkChanger( | ||||||
tryGetNetworkLabelByApiUrl(zilPay.wallet.http) || zilPay.wallet.net | ||||||
Boolean(zilPay.wallet.http) ? tryGetNetworkLabelByApiUrl(zilPay.wallet.http) : zilPay.wallet.net | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit:
Suggested change
|
||||||
); | ||||||
|
||||||
const accountStreamChanged = zilPay.wallet.observableAccount().subscribe((account: any) => { | ||||||
|
@@ -575,4 +575,4 @@ function Dashboard(props: any) { | |||||
); | ||||||
} | ||||||
|
||||||
export default Dashboard; | ||||||
export default Dashboard; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's not update the package version. We are moving out of Zillion to a new staking platform, so the focus is on keeping it working till then. Updating packages always creates a risk of new bugs materializing.