diff --git a/src/components/MagicCard.tsx b/src/components/MagicCard.tsx
index 426cefe..876c2ef 100644
--- a/src/components/MagicCard.tsx
+++ b/src/components/MagicCard.tsx
@@ -1,31 +1,31 @@
-import React from 'react';
-import { Card } from '../types';
-
-interface MagicCardProps {
- card: Card;
-}
-
-const MagicCard = ({ card }: MagicCardProps) => {
- return (
-
- {card.image_uris?.normal ? (
-

- ) : (
-
- No Image Available
-
- )}
- {card.prices?.usd && (
-
- ${card.prices.usd}
-
- )}
-
- );
-};
-
+import React from 'react';
+import { Card } from '../types';
+
+interface MagicCardProps {
+ card: Card;
+}
+
+const MagicCard = ({ card }: MagicCardProps) => {
+ return (
+
+ {card.image_uris?.normal ? (
+

+ ) : (
+
+ No Image Available
+
+ )}
+ {card.prices?.usd && (
+
+ ${card.prices.usd}
+
+ )}
+
+ );
+};
+
export default MagicCard;