diff --git a/src/components/editor/EditorMenuBar.tsx b/src/components/editor/EditorMenuBar.tsx
index 960aef4..c03cf5e 100644
--- a/src/components/editor/EditorMenuBar.tsx
+++ b/src/components/editor/EditorMenuBar.tsx
@@ -69,6 +69,7 @@ export default function EditorMenuBar({ editor }: EditorMenuProps) {
     const allowedTypes = [
       "image/jpeg", // JPEG images
       "image/png", // PNG images
+      "image/apng", // APNG images
       "image/gif", // GIF images
       "image/webp", // WebP images
       "image/svg+xml", // SVG images
diff --git a/src/components/editor/index.tsx b/src/components/editor/index.tsx
index 14abeca..19659e9 100644
--- a/src/components/editor/index.tsx
+++ b/src/components/editor/index.tsx
@@ -129,6 +129,7 @@ export default function Editor({
           const allowedTypes = [
             "image/jpeg", // JPEG images
             "image/png", // PNG images
+            "image/apng", // APNG images
             "image/gif", // GIF images
             "image/webp", // WebP images
             "image/svg+xml", // SVG images