Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mciszczon committed Oct 24, 2024
1 parent 64d7862 commit 691abc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/loaders/hive-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const postSchema = z.object({
author: z.string(),
permlink: z.string(),
category: z.string(),
community_title: z.string().optional(),
title: z.string(),
body: z.string(),
json_metadata: z.object({
Expand Down Expand Up @@ -50,7 +51,7 @@ export function hiveTagLoader(): Loader {
export function hiveBlogLoader(params: BlogLoaderParams): Loader {
return {
name: "hive-blog-loader",
load: async function (this: Loader, { store, meta, logger }) {
load: async function (this: Loader, { store, logger }) {
logger.debug(`Fetching blog posts [params: ${JSON.stringify(params)}]`);

const response = await fetch(HIVE_API, {
Expand Down

0 comments on commit 691abc9

Please sign in to comment.