From 211b96497a81ee1caa0323ba34cfcdaf8ce0c66e Mon Sep 17 00:00:00 2001 From: Fergus Ruston Date: Thu, 26 Oct 2023 10:31:51 +0100 Subject: [PATCH 1/3] Update component-issue-template.md --- .github/ISSUE_TEMPLATE/component-issue-template.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/component-issue-template.md b/.github/ISSUE_TEMPLATE/component-issue-template.md index 8e6134e6..aabbebbe 100644 --- a/.github/ISSUE_TEMPLATE/component-issue-template.md +++ b/.github/ISSUE_TEMPLATE/component-issue-template.md @@ -10,3 +10,4 @@ assignees: '' - [ ] Create component - [ ] Create Storybook demo - [ ] Write Storybook docs +- [ ] Implement dark mode From 7474063db598890829b37d2d0eeeaeb691f6fc9d Mon Sep 17 00:00:00 2001 From: Fergus Ruston Date: Thu, 26 Oct 2023 19:20:01 +0100 Subject: [PATCH 2/3] fix: fix error from missing key in jsx loop --- stories/Colors.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stories/Colors.mdx b/stories/Colors.mdx index 3acc5204..868c7b3e 100644 --- a/stories/Colors.mdx +++ b/stories/Colors.mdx @@ -16,6 +16,7 @@ Base colours provide a full colour spectrum of dark to light hues, and are used const color = colors[token]; return ( Date: Thu, 26 Oct 2023 19:25:48 +0100 Subject: [PATCH 3/3] fix: remove unnecesary storybook addon throwing a warning --- .storybook/main.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/.storybook/main.ts b/.storybook/main.ts index 1a10e362..cfc0dfe0 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -10,7 +10,6 @@ const config: StorybookConfig = { addons: [ '@storybook/addon-links', '@storybook/addon-essentials', - '@storybook/addon-onboarding', '@storybook/addon-interactions', 'storybook-tailwind-dark-mode' ],