Ionic Storage issue Uncaught (in Promise)

Using Ionic Storage and storage.get() giving this error again and again
Please help in resolving it

add your code maybe …

import { HttpClient } from ‘@angular/common/http’;
import { Injectable } from ‘@angular/core’;
import {Dish} from ‘…/…/shared/dish’;
import {Observable} from ‘rxjs/Observable’;
import {DishProvider} from ‘…/dish/dish’;
import ‘rxjs/add/operator/map’;
import {Storage} from ‘@ionic/storage’;
//import {Favourites} from ‘…/…/shared/favourites’;

/*
Generated class for the FavoriteProvider provider.

See https://angular.io/guide/dependency-injection for more info on providers
and Angular DI.
*/
@Injectable()
export class FavoriteProvider {

favorites:Array;
// fav:Favourites ={
// id :’’
// };

constructor(public http: HttpClient,
private dishservice:DishProvider,
private storage:Storage) {
console.log(‘Hello FavoriteProvider Provider’);
this.favorites = [];

storage.get('favorites').then(data => {
  if (data) 
    this.favorites = data;
  else
    this.favorites = [];
});

}

addFavorite(id:number):boolean
{
if(!this.isFavorite(id)){
this.favorites.push(id);
this.storage.set(‘fav’,this.favorites);
}
return true;

}

isFavorite(id:number):boolean{
return this.favorites.some(el => el === id);
}

getFavorites(): Observable<Dish[]>{
return this.dishservice.getDishes()
.map(dishes => dishes.filter(dish => this.favorites.some(el => el === dish.id)));
}

deleteFavorite(id:number):Observable<Dish[]>{
let index = this.favorites.indexOf(id);
if(index >= 0){
this.favorites.splice(index,1);
this.storage.set(‘fav’,this.favorites);
return this.getFavorites();
}else{
console.log(‘Deleting non-existant favorite’,id);
return Observable.throw(‘Deleting non-existant favorite’+ id);
}

}

}

Your storage is full and you didnt catch the error

Use devtools or storage,clear to clear it