fix missing export of userDetailed from .storybook/fakes.ts
This commit is contained in:
parent
3dda3d0675
commit
19193b66aa
2 changed files with 2 additions and 2 deletions
|
|
@ -286,7 +286,7 @@ export function userLite(id = 'someuserid', username = 'miskist', host: entities
|
|||
};
|
||||
}
|
||||
|
||||
function userDetailed(id = 'someuserid', username = 'miskist', host: entities.UserDetailed['host'] = 'misskey-hub.net', name: entities.UserDetailed['name'] = 'Misskey User'): entities.UserDetailed {
|
||||
export function userDetailed(id = 'someuserid', username = 'miskist', host: entities.UserDetailed['host'] = 'misskey-hub.net', name: entities.UserDetailed['name'] = 'Misskey User'): entities.UserDetailed {
|
||||
return {
|
||||
...userLite(id, username, host, name),
|
||||
bannerBlurhash: 'eQA^IW^-MH8w9tE8I=S^o{$*R4RikXtSxutRozjEnNR.RQadoyozog',
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import { addons } from '@storybook/preview-api';
|
|||
import { setup } from '@storybook/vue3';
|
||||
import isChromatic from 'chromatic/isChromatic';
|
||||
import { initialize, mswLoader } from 'msw-storybook-addon';
|
||||
import userDetailed from './fakes.js';
|
||||
import { userDetailed } from './fakes.js';
|
||||
import locale from './locale.js';
|
||||
import { commonHandlers, onUnhandledRequest } from './mocks.js';
|
||||
import themes from './themes.js';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue