Index: frontend/src/context/playlistContext.tsx
===================================================================
--- frontend/src/context/playlistContext.tsx	(revision 85512ff50bc46445db00d8c3ecea57616baddb36)
+++ frontend/src/context/playlistContext.tsx	(revision ce45c7a7871379455b3a3c55a48f767ca2e0e739)
@@ -17,5 +17,5 @@
   setCreatedPlaylists: Dispatch<SetStateAction<BasicPlaylist[] | undefined>>;
   isLoading: boolean;
-  refreshPlaylists: () => Promise<void>;
+  refreshPlaylists: (addedSong: boolean) => Promise<void>;
 }
 
@@ -28,5 +28,5 @@
   setCreatedPlaylists: () => {},
   isLoading: false,
-  refreshPlaylists: async () => {},
+  refreshPlaylists: async (addedSong: boolean) => {},
 });
 
@@ -38,6 +38,8 @@
   const [isLoading, setIsLoading] = useState(false);
 
-  const fetchCreatedPlaylists = async () => {
-    setIsLoading(true);
+  const fetchCreatedPlaylists = async (addedSong: boolean) => {
+    if (!addedSong) {
+      setIsLoading(true);
+    }
     try {
       const data = await axiosInstance.get<BasicPlaylist[]>("/playlists/user");
@@ -52,5 +54,5 @@
   useEffect(() => {
     if (user) {
-      fetchCreatedPlaylists();
+      fetchCreatedPlaylists(false);
     } else {
       setCreatedPlaylists(undefined);
