diff --git a/packages/host/app/services/recent-cards-service.ts b/packages/host/app/services/recent-cards-service.ts index 47ee88b130..82fecff79f 100644 --- a/packages/host/app/services/recent-cards-service.ts +++ b/packages/host/app/services/recent-cards-service.ts @@ -85,7 +85,7 @@ export default class RecentCardsService extends Service { add(newId: string) { if (isLocalId(newId)) { let instance = this.store.peek(newId); - if (isCardInstance(instance)) { + if (isCardInstance(instance) && instance.id && !isLocalId(instance.id)) { this.addNewCard(instance); } return;