mods refactor and added repost tag system #163

Merged
freakoverse merged 15 commits from staging into master 2024-11-28 22:57:20 +00:00
Showing only changes of commit f61c32c16a - Show all commits

View File

@ -123,7 +123,7 @@ export const profileRouteLoader =
)
}
// Check the profile event result
// Check the mutelist event result
const muteListResult = settled[1]
if (muteListResult.status === 'fulfilled' && muteListResult.value) {
result.muteLists = muteListResult.value
@ -139,7 +139,7 @@ export const profileRouteLoader =
)
}
// Check the profile event result
// Check the nsfwlist event result
const nsfwListResult = settled[2]
if (nsfwListResult.status === 'fulfilled' && nsfwListResult.value) {
result.nsfwList = nsfwListResult.value
@ -152,7 +152,7 @@ export const profileRouteLoader =
)
}
// Check the profile event result
// Check the repostlist event result
const repostListResult = settled[3]
if (repostListResult.status === 'fulfilled' && repostListResult.value) {
result.repostList = repostListResult.value