The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord

fix: logout not causing a re-render

shi.gg e6ae008b 04c2c8c5

verified
+8 -4
+8 -4
components/header.tsx
··· 138 asChild 139 className="text-red-400" 140 > 141 - <Link href="/login?logout=true" prefetch={false}> 142 - <HiLogout /> 143 Logout 144 - </Link> 145 </DropdownMenuItem> 146 </DropdownMenuGroup> 147 </DropdownMenuContent> 148 - </DropdownMenu> 149 ); 150 }
··· 138 asChild 139 className="text-red-400" 140 > 141 + <button 142 + onClick={() => { 143 + window.location.href = "/login?logout=true"; 144 + }} 145 + > 146 + < HiLogout /> 147 Logout 148 + </button> 149 </DropdownMenuItem> 150 </DropdownMenuGroup> 151 </DropdownMenuContent> 152 + </DropdownMenu > 153 ); 154 }