diff --git a/ui/app/AppLayouts/Chat/stores/RootStore.qml b/ui/app/AppLayouts/Chat/stores/RootStore.qml index 1485108e4d..cc67213547 100644 --- a/ui/app/AppLayouts/Chat/stores/RootStore.qml +++ b/ui/app/AppLayouts/Chat/stores/RootStore.qml @@ -48,11 +48,11 @@ QtObject { sourceModel: communitiesModuleInst.collectiblesModel proxyRoles: ExpressionRole { - function icon(icon) { + function collectibleIcon(icon) { return !!icon ? icon : Style.png("tokens/DEFAULT-TOKEN") } name: "iconSource" - expression: icon(model.icon) + expression: collectibleIcon(model.icon) } }