diff --git a/src/camera/PhotoCamera.tsx b/src/camera/PhotoCamera.tsx
index 581a0861..484dfaf5 100644
--- a/src/camera/PhotoCamera.tsx
+++ b/src/camera/PhotoCamera.tsx
@@ -3,10 +3,11 @@ import { pathForCamera } from '@/site/paths';
import { IoMdCamera } from 'react-icons/io';
import { Camera } from '.';
import EntityLink, { EntityLinkExternalProps } from '@/components/EntityLink';
+import { cc } from '@/utility/css';
export default function PhotoCamera({
camera,
- hideAppleIcon = true,
+ hideAppleIcon,
type = 'icon-first',
badged,
dim,
@@ -29,14 +30,17 @@ export default function PhotoCamera({
icon={showAppleIcon
?
: }
- type={type}
+ type={showAppleIcon && isCameraApple ? 'icon-first' : type}
badged={badged}
dim={dim}
hoverEntity={countOnHover}
diff --git a/src/components/EntityLink.tsx b/src/components/EntityLink.tsx
index c6e30408..2a4a5aaf 100644
--- a/src/components/EntityLink.tsx
+++ b/src/components/EntityLink.tsx
@@ -42,7 +42,7 @@ export default function EntityLink({
href={href}
title={title}
className={cc(
- 'inline-flex items-center gap-1',
+ 'inline-flex gap-1',
!badged && 'text-main hover:text-gray-900 dark:hover:text-gray-100',
dim && 'text-dim',
)}
@@ -61,6 +61,7 @@ export default function EntityLink({
{icon && type !== 'text-only' &&
{icon}
diff --git a/src/photo/PhotoLarge.tsx b/src/photo/PhotoLarge.tsx
index 271e2946..f66deb59 100644
--- a/src/photo/PhotoLarge.tsx
+++ b/src/photo/PhotoLarge.tsx
@@ -84,7 +84,6 @@ export default function PhotoLarge({
{showSimulation && photo.filmSimulation &&