From b6b6c2489dd6a3ef1d820b58b7b324ac7f2ab6be Mon Sep 17 00:00:00 2001 From: Yann Braga Date: Wed, 4 Sep 2024 11:21:26 +0200 Subject: [PATCH] use named import from dedent --- code/addons/test/src/postinstall.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/addons/test/src/postinstall.ts b/code/addons/test/src/postinstall.ts index c000bd172fcc..3d2c0f1b5b01 100644 --- a/code/addons/test/src/postinstall.ts +++ b/code/addons/test/src/postinstall.ts @@ -16,7 +16,7 @@ import { colors, logger } from 'storybook/internal/node-logger'; import { findUp } from 'find-up'; import { satisfies } from 'semver'; import c from 'tinyrainbow'; -import dedent from 'ts-dedent'; +import { dedent } from 'ts-dedent'; import { type PostinstallOptions } from '../../../lib/cli-storybook/src/add'; import { printError, printInfo, printSuccess, step } from './postinstall-logger';