diff --git a/src/app/project-keyword.pipe.ts b/src/app/project-keyword.pipe.ts
index 28dcfb9..f8e6603 100644
--- a/src/app/project-keyword.pipe.ts
+++ b/src/app/project-keyword.pipe.ts
@@ -4,7 +4,7 @@ import {Pipe, PipeTransform} from '@angular/core';
name: 'projectKeyword'
})
export class ProjectKeywordPipe implements PipeTransform {
- private const keywords = [
+ private keywords = [
'MySQL', 'Node', 'Express', 'RxJava', 'Dagger 2', 'Model View Presenter', 'Retrofit', 'Realm', 'Room', 'Model-View-View Model', 'SimpleStack'
];
diff --git a/src/app/projects/project.service.ts b/src/app/projects/project.service.ts
index 0a178a3..454d69b 100644
--- a/src/app/projects/project.service.ts
+++ b/src/app/projects/project.service.ts
@@ -18,7 +18,8 @@ const projects = [
{
title: "Movies",
applicationType: "Android Application (Kotlin)",
- description: "Movies is an Android application for viewing movie and TV show info using the TMDB API. Movies is a Single Activity application, leveraging Model-View-View Model, Dagger 2, RxJava and SimpleStack for navigation. There is a focus on caching and a pleasant user experience even on slower networks by combining both in-memory and disk caching for quick load times, especially after a show details have been viewed."
+ description: "Movies is an Android application for viewing movie and TV show info using the TMDB API. Movies is a Single Activity application, leveraging Model-View-View Model, Dagger 2, RxJava and SimpleStack for navigation. There is a focus on caching and a pleasant user experience even on slower networks by combining both in-memory and disk caching for quick load times, especially after a show details have been viewed.",
+ imgLocation: ""
},
{
title: "Secure Notes",