Changeset 890e036 for frontend/src/pages
- Timestamp:
- 02/09/26 21:45:41 (5 months ago)
- Branches:
- main
- Children:
- 0808ef2
- Parents:
- 03a8d87 (diff), 27660af (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- frontend/src/pages
- Files:
-
- 2 added
- 1 edited
-
MySongs.tsx (added)
-
Nav.tsx (modified) (2 diffs)
-
PublishSong.tsx (added)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/pages/Nav.tsx
r03a8d87 r890e036 22 22 setUser(undefined); 23 23 setIsDropdownOpen(false); 24 toast.success("Logout successful!"); 24 window.location.href = "/"; 25 // toast.success("Logout successful!"); 25 26 } catch (error) { 26 27 console.error("Logout failed:", error); … … 81 82 {!isAuthLoading && ( 82 83 <div className="flex items-center space-x-3"> 84 {user?.isArtist && ( 85 <Link 86 to="/my-songs" 87 className="text-white hover:text-[#1db954] px-4 py-2 text-sm font-medium transition-colors" 88 > 89 My Songs 90 </Link> 91 )} 83 92 {user ? ( 84 93 <div className="relative" ref={dropdownRef}>
Note:
See TracChangeset
for help on using the changeset viewer.
