Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
aykutkardas committed Mar 3, 2024
1 parent 0419c35 commit 63e26cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/model-compare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import CompareImageLabel from "./compare-image-label";

interface ModelCompareProps {
originalImage: string;
originalImage: string | null;
position: number;
setPosition: (position: number) => void;
modelOne: any;
Expand Down
2 changes: 1 addition & 1 deletion components/original-compare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import CompareImageLabel from "./compare-image-label";

interface OriginalCompareProps {
originalImage: string;
originalImage: string | null;
position: number;
setPosition: (position: number) => void;
modelOne: any;
Expand Down

0 comments on commit 63e26cd

Please sign in to comment.