From 851ef9cfea9cce851b35ecc4cb15c843cf79a208 Mon Sep 17 00:00:00 2001 From: Billy Brawner Date: Sun, 2 Sep 2018 19:47:39 -0500 Subject: [PATCH] Remove unnecessary import --- src/app/category.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/category.service.ts b/src/app/category.service.ts index acc5d86..e5fff18 100644 --- a/src/app/category.service.ts +++ b/src/app/category.service.ts @@ -1,6 +1,6 @@ import { Injectable } from '@angular/core'; import { of, Observable, from } from 'rxjs'; -import { BudgetDatabase, ICategory } from './budget-database'; +import { BudgetDatabase } from './budget-database'; import { TransactionType } from './transaction.type' import { Category } from './category'