diff --git a/src/components/FeedPost.tsx b/src/components/FeedPost.tsx
index db32c52..b4f84e5 100644
--- a/src/components/FeedPost.tsx
+++ b/src/components/FeedPost.tsx
@@ -7,6 +7,7 @@ import { Profile } from "../lib/profile";
import { PostInteractionButtons, PostNotesIndicator } from "./PostInteraction";
import { Text } from "./primitive/Text";
import Ionicons from "@expo/vector-icons/Ionicons";
+import Fontawesome from "@expo/vector-icons/FontAwesome";
const styles = StyleSheet.create({
postHeader: {
@@ -77,7 +78,7 @@ function PostHeader({ post, reblogParentProfile }: { post: Post, reblogParentPro
source={require("@/assets/images/avatar-default.svg")}
/>
{reblogged && (
-
+
)}
{reblogged ? (
{profile.handle} reblogged {reblogParentProfile!.handle}
diff --git a/src/components/PostInteraction.tsx b/src/components/PostInteraction.tsx
index 6f5ab2f..5c7fda3 100644
--- a/src/components/PostInteraction.tsx
+++ b/src/components/PostInteraction.tsx
@@ -11,6 +11,7 @@ import {
import { useContext, useEffect, useState } from "react";
import { AuthContext } from "../context/AuthContext";
import { Text } from "./primitive/Text";
+import FontAwesome from "@expo/vector-icons/FontAwesome";
export function PostNotesIndicator({ post }: { post: Post }) {
const [count, setCount] = useState();
@@ -99,8 +100,8 @@ export function PostLike({
}) {
return (
- {
@@ -121,8 +122,8 @@ export function PostReblog({
}) {
return (
- {