Skip to content

Commit fbf5d2a

Browse files
committed
Fix call to settings in metadata
1 parent 2b4b41f commit fbf5d2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/core/src/telemetry/storybook-metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const computeStorybookMetadata = async ({
5757
const settings = await globalSettings();
5858
const metadata: Partial<StorybookMetadata> = {
5959
generatedAt: new Date().getTime(),
60-
userSince: await settings.get('userSince'),
60+
userSince: settings.value.userSince,
6161
hasCustomBabel: false,
6262
hasCustomWebpack: false,
6363
hasStaticDirs: false,

0 commit comments

Comments
 (0)