Skip to content

Commit

Permalink
build(app): 95 fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
huilensolis committed Mar 14, 2024
1 parent 633465e commit d25b052
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export const SearchForm: React.FC<SearchFormProps> = ({
onInput={handleOnChangeToSearch}
name={formInputs.search}
register={register}
validationScheme={{}}
type="text"
id="search-input"
label="Search"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "./images-grid-row.component";
export * from "./posts-grid-row.component";
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"use client";

import Link from "next/link";
import { LazyImage } from "@/components/feature/lazy-image";
import { ClientRouting } from "@/models/routing/client";
import { Database } from "@/supabase/types";
import Link from "next/link";

export function PostsGridRow({
post,
Expand Down
2 changes: 1 addition & 1 deletion src/components/feature/posts-grid/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "./images-grid.component";
export * from "./posts-grid.component";
2 changes: 1 addition & 1 deletion src/components/feature/posts-grid/posts-grid.component.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useCallback, useEffect, useRef, useState } from "react";
import { TPostsGridItem } from "./posts-grid.models";
import { PostsGridRow } from "./components/posts-grid-row/posts-grid-row.component";
import { PostsGridRow } from "./components/posts-grid-row";
import { PostsGridContainer } from "./components/posts-grid-container";

export function PostsGrid({
Expand Down

0 comments on commit d25b052

Please sign in to comment.