Skip to content

Commit

Permalink
Small improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Lody Borgers committed Apr 2, 2024
1 parent a4f5e5b commit ecf0576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/Document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function Document({ children }: Props) {
__html: `window.ENV = ${JSON.stringify(ENV)}`,
}}
/>
<LiveReload port={3000} />
<LiveReload port={4200} />
</body>
</html>
);
Expand Down
2 changes: 1 addition & 1 deletion app/components/GalleryItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Image } from '~/components/Image';

export function GalleryItem(props: { imageName: string }) {
const [ref, entry] = useIntersectionObserver({
threshold: 10,
threshold: 0.1,
root: null,
rootMargin: '500px',
});
Expand Down

0 comments on commit ecf0576

Please sign in to comment.