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 dea09ee commit 0e6878aCopy full SHA for 0e6878a
packages/blinks-core/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@dialectlabs/blinks-core",
3
- "version": "0.20.5",
+ "version": "0.20.6",
4
"license": "Apache-2.0",
5
"private": false,
6
"sideEffects": true,
packages/blinks-core/src/api/BlinkInstance/BlinkInstance.ts
@@ -138,7 +138,11 @@ export class BlinkInstance {
138
}
139
140
public get icon() {
141
- if (this._data.icon.startsWith('data:') || isProxified(this._data.icon)) {
+ if (
142
+ this._data.icon.startsWith('data:') ||
143
+ isProxified(this._data.icon) ||
144
+ !this._data.icon
145
+ ) {
146
return this._data.icon;
147
148
return proxifyImage(this._data.icon).url.toString();
0 commit comments