From fcc99cc21d7ab094da6670900bcec70b86ec77b2 Mon Sep 17 00:00:00 2001 From: lonyele Date: Tue, 2 Jul 2019 00:02:26 +0900 Subject: [PATCH] fix: typo and wrong function arguments name --- lib/api/src/modules/stories.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/src/modules/stories.ts b/lib/api/src/modules/stories.ts index 984f0e1f35a..c7fcad54b60 100644 --- a/lib/api/src/modules/stories.ts +++ b/lib/api/src/modules/stories.ts @@ -27,7 +27,7 @@ export interface SubAPI { getData: (storyId: StoryId) => Story | Group; getParameters: (storyId: StoryId, parameterName?: ParameterName) => Story['parameters'] | any; getCurrentParameter(parameterName?: ParameterName): S; - showSettingPage: (pageName: string) => void; + showSettingsPage: (storyId: string) => void; } interface Group {