fix missing export of userDetailed from .storybook/fakes.ts

This commit is contained in:
Hazelnoot 2025-10-07 19:54:44 -04:00
parent 3dda3d0675
commit 19193b66aa
2 changed files with 2 additions and 2 deletions

View file

@ -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',

View file

@ -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';