Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Mar 26, 2024
1 parent 4a5b5ea commit 3006eb3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion kitsune-fe/src/components/BaseTimeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import { ref } from 'vue';
import { DynamicScroller, DynamicScrollerItem } from 'vue-virtual-scroller';
import Post, { Post as PostType } from './Post.vue';
import Post, { Post as PostType } from './PostComponent.vue';
const props = defineProps<{
posts: PostType[];
Expand Down
File renamed without changes.
4 changes: 3 additions & 1 deletion kitsune-fe/src/views/MessagePage.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<template></template>
<template>
<div class="messages"></div>
</template>

<script lang="ts" setup></script>
4 changes: 3 additions & 1 deletion kitsune-fe/src/views/NotificationPage.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<template></template>
<template>
<div class="notifications"></div>
</template>

<script lang="ts" setup></script>
2 changes: 1 addition & 1 deletion kitsune-fe/src/views/PostPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<script lang="ts" setup>
import { useRoute } from 'vue-router';
import Post from '../components/Post.vue';
import Post from '../components/PostComponent.vue';
import { getPostById } from '../graphql/post';
const route = useRoute();
Expand Down
2 changes: 1 addition & 1 deletion kitsune-fe/src/views/timeline/FederatedPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { ref, watch } from 'vue';
import BaseTimeline from '../../components/BaseTimeline.vue';
import { Post } from '../../components/Post.vue';
import { Post } from '../../components/PostComponent.vue';
import { MAX_UUID } from '../../consts';
import { getPublic } from '../../graphql/timeline';
Expand Down
2 changes: 1 addition & 1 deletion kitsune-fe/src/views/timeline/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { ref, watch } from 'vue';
import BaseTimeline from '../../components/BaseTimeline.vue';
import { Post } from '../../components/Post.vue';
import { Post } from '../../components/PostComponent.vue';
import { MAX_UUID } from '../../consts';
import { getHome } from '../../graphql/timeline';
Expand Down
2 changes: 1 addition & 1 deletion kitsune-fe/src/views/timeline/LocalPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { ref, watch } from 'vue';
import BaseTimeline from '../../components/BaseTimeline.vue';
import { Post } from '../../components/Post.vue';
import { Post } from '../../components/PostComponent.vue';
import { MAX_UUID } from '../../consts';
import { getPublic } from '../../graphql/timeline';
Expand Down

0 comments on commit 3006eb3

Please sign in to comment.