From a63f22c56f368a00132c90d17c862787ce3a5442 Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Sat, 17 Oct 2015 22:50:06 -0500 Subject: [PATCH] fix(demos): fix actionSheet import error --- demos/component-docs/actionSheet/actionSheet.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; }