diff --git a/demos/component-docs/actionSheet/actionSheet.ts b/demos/component-docs/actionSheet/actionSheet.ts index 715389e33c..1bc6e30585 100644 --- a/demos/component-docs/actionSheet/actionSheet.ts +++ b/demos/component-docs/actionSheet/actionSheet.ts @@ -1,13 +1,12 @@ -import {Platform, Page, ActionSheet} from 'ionic/ionic'; +import {IonicPlatform, Page, ActionSheet} from 'ionic/ionic'; @Page({ templateUrl: 'actionSheet/actionSheet.html', }) export class ActionSheetPage { - constructor(actionSheet: ActionSheet, platform: Platform) { + constructor(actionSheet: ActionSheet, platform: IonicPlatform) { this.actionSheet = actionSheet; - console.log('actionSheet', actionSheet); this.platform = platform; }