From 5651be0fc75e0d45049879214c20b5807b890fab Mon Sep 17 00:00:00 2001 From: Riccardo Albero Date: Sun, 21 Jul 2024 08:22:48 +0200 Subject: [PATCH] Update entities.ex.ts (#527) lint code (remove space) --- docs/docs/examples/entities.ex.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/examples/entities.ex.ts b/docs/docs/examples/entities.ex.ts index 699c4c1d..6142b642 100644 --- a/docs/docs/examples/entities.ex.ts +++ b/docs/docs/examples/entities.ex.ts @@ -18,7 +18,7 @@ todosStore.pipe(selectAllEntities()).subscribe((todos) => { todosStore.update( setEntities([ - { id: 1, label: 'one ' }, + { id: 1, label: 'one' }, { id: 2, label: 'two' }, ]) );