From c29db475c97ccf8672a31a6bb784572c5ea7c559 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 19 May 2024 12:27:11 +0200 Subject: [PATCH] add improvement todo list --- README.md | 9 +++++++++ src/main.ts | 4 +--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bafe103..6231f2a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,12 @@ # Thinking People System A interactive website to better understand the Thinking People System. + +## Improvements + +### Pull system article + +- [ ] explaining 0 defect policy +- [ ] work emoji is not contrastred enough and we don't understand it +- [ ] complexity can be removed +- [ ] add a visual to demonstrate a card is going backward and the card had a quality issue. diff --git a/src/main.ts b/src/main.ts index 67b9579..202f589 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,6 +2,4 @@ import { createPinia } from 'pinia' import { createApp } from 'vue' import App from './App.vue' -const pinia = createPinia() - -createApp(App).use(pinia).mount('#app') +createApp(App).use(createPinia()).mount('#app')