Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import { resolve } from 'node:path'
const config = {
stories: [
// List welcome first in sidebar
'../.storybook/docs/welcome.mdx',
'../.storybook/docs/*.mdx',
'../app/design-docs/storybook-welcome.mdx',
Comment thread
ghostdevv marked this conversation as resolved.
Outdated
'../app/**/*.@(mdx|stories.@(js|ts))',
Comment thread
ghostdevv marked this conversation as resolved.
Outdated
],
addons: [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/pages/about.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import About from './about.vue'
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
import { pageDecorator } from '../../.storybook/decorators'
import { contributorsHandler } from '../../.storybook/handlers'
import { contributorsHandler } from '../mocks/handlers'

const meta = {
component: About,
Expand Down
2 changes: 1 addition & 1 deletion app/pages/pds.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Pds from './pds.vue'
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
import { pageDecorator } from '../../.storybook/decorators'
import { pdsUsersHandler } from '../../.storybook/handlers'
import { pdsUsersHandler } from '../mocks/handlers'

const meta = {
component: Pds,
Expand Down
2 changes: 1 addition & 1 deletion app/pages/recharging.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Recharging from './recharging.vue'
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
import { pageDecorator } from '../../.storybook/decorators'
import { repoStatsHandler } from '../../.storybook/handlers'
import { repoStatsHandler } from '../mocks/handlers'

const meta = {
component: Recharging,
Expand Down
2 changes: 1 addition & 1 deletion app/pages/settings.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Settings from './settings.vue'
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
import { userEvent, expect } from 'storybook/test'
import { pageDecorator } from '../../.storybook/decorators'
import { i18nStatusHandler } from '../../.storybook/handlers'
import { i18nStatusHandler } from '../mocks/handlers'

const meta = {
component: Settings,
Expand Down
Loading