Skip to content

Commit

Permalink
Fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed May 31, 2024
1 parent 7a2ac16 commit b03181c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions examples/blog/routes/posts/[uuid].tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
import { Handler, PageProps } from "$fresh/server.ts";
import { Head } from "$fresh/runtime.ts";
import { respondWithObjectIfAcceptable } from "@fedify/fedify/federation";
import Comment from "../../components/Comment.tsx";
import Post from "../../components/Post.tsx";
import { federation } from "../../federation/mod.ts";
import { Blog, getBlog } from "../../models/blog.ts";
import {
type Comment as CommentModel,
getComments,
} from "../../models/comment.ts";
import {
getPost,
type Post as PostModel,
toArticle,
} from "../../models/post.ts";
import { getPost, type Post as PostModel } from "../../models/post.ts";
import { countFollowers } from "../../models/follower.ts";

export interface PostPageData {
Expand Down

0 comments on commit b03181c

Please sign in to comment.