diff --git a/src/components/app/app.vue b/src/components/app/app.vue
index dcb4515..6e104fc 100644
--- a/src/components/app/app.vue
+++ b/src/components/app/app.vue
@@ -3,8 +3,7 @@
+ v-on:sign-out="signOut">
diff --git a/src/components/navigation/navigation.ts b/src/components/navigation/navigation.ts
index 95c9400..cec0422 100644
--- a/src/components/navigation/navigation.ts
+++ b/src/components/navigation/navigation.ts
@@ -48,9 +48,6 @@ export default class Navigation extends Vue
// Update active index
this.activeIndex = index;
- // Call custom event
- this.$emit('navigation:select', this.activeIndex);
-
// Debug output TODO: Remove this
console.log(`onNavigate: Previous: ${this.activeIndex}, New: ${index}`);