From 5a0a18ab954f5008f6efb5da884b153d2cf098fd Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sun, 7 Oct 2018 08:00:09 -0700 Subject: [PATCH] Fix reference to new-post from thread page Remove more unused imports from stream and post-menu --- src/pages/stream/post-menu.ts | 4 ++-- src/pages/stream/stream.ts | 2 +- src/pages/thread/thread.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/stream/post-menu.ts b/src/pages/stream/post-menu.ts index 718c015..c48bb5f 100644 --- a/src/pages/stream/post-menu.ts +++ b/src/pages/stream/post-menu.ts @@ -1,5 +1,5 @@ -import { Component, ViewChild, ChangeDetectorRef } from '@angular/core'; -import { ViewController, NavController, NavParams, ModalController, Content, ToastController, PopoverController } from 'ionic-angular'; +import { Component } from '@angular/core'; +import { ViewController, NavParams, ToastController } from 'ionic-angular'; import { Events } from 'ionic-angular'; import * as pnut from 'pnut-butter'; diff --git a/src/pages/stream/stream.ts b/src/pages/stream/stream.ts index 3cab72a..a96689a 100644 --- a/src/pages/stream/stream.ts +++ b/src/pages/stream/stream.ts @@ -1,5 +1,5 @@ import { Component, ViewChild, ChangeDetectorRef } from '@angular/core'; -import { ViewController, NavController, NavParams, ModalController, Content, ToastController, PopoverController } from 'ionic-angular'; +import { NavController, NavParams, ModalController, Content, ToastController, PopoverController } from 'ionic-angular'; import { ThreadPage } from '../thread/thread'; import { Storage } from '@ionic/storage'; import { Events } from 'ionic-angular'; diff --git a/src/pages/thread/thread.ts b/src/pages/thread/thread.ts index 17c93b3..7b24c2b 100644 --- a/src/pages/thread/thread.ts +++ b/src/pages/thread/thread.ts @@ -1,6 +1,6 @@ import { Component } from '@angular/core'; import { NavController, NavParams, ModalController, ToastController, PopoverController } from 'ionic-angular'; -import { NewPostModal } from '../stream/stream'; +import { NewPostModal } from '../stream/new-post'; import { PostMenu } from '../stream/post-menu'; import * as pnut from 'pnut-butter';