Skip to content

Commit

Permalink
fix for the mdx issue
Browse files Browse the repository at this point in the history
  • Loading branch information
verena-ifx authored and verena-ifx committed Jun 23, 2023
1 parent a4dacb8 commit 8979738
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/github_pages_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,13 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# - name: Cache dependencies for packages/components
# uses: actions/cache@v2
# with:
# path: packages/components/node_modules
# key: ${{ runner.os }}-npm-packages-components-${{ hashFiles('packages/components/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-npm-packages-components-

- name: Cache node modules
- name: Cache dependencies for packages/components
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.OS }}-npm-packages-components-${{ hashFiles('packages/components/package-lock.json') }}-v2
path: packages/components/node_modules
key: ${{ runner.os }}-npm-packages-components-${{ hashFiles('packages/components/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-packages-components-
${{ runner.OS }}-

${{ runner.os }}-npm-packages-components-
- run: |
cd packages/components
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/button/button_docs.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Meta, Primary, Controls, Story } from '@storybook/blocks';
import * as ButtonStories from './button.stories';

<Meta of={ButtonStories} />
<Meta of={ButtonStories.default} />

# Button

Expand Down

0 comments on commit 8979738

Please sign in to comment.