···2020export default function Side({
2121 guild,
2222 design,
2323- pagination,
2424- currentCircular
2323+ pagination
2524}: {
2625 guild: ApiV1GuildsGetResponse | ApiError | undefined;
2726 design: ApiV1GuildsModulesLeaderboardGetResponse | ApiError | undefined;
2827 pagination: ApiV1GuildsTopmembersPaginationGetResponse | ApiError | undefined;
2929- currentCircular: "next" | "server" | undefined;
3028}) {
3129 const cookies = useCookies();
3230 const router = useRouter();
···154152 Users are sorted from most to least active for each category, updates once per minute.
155153 <br />
156154 <br />
157157- The percentage {currentCircular !== "server" ? "indicates the gap in messages needed to surpass the next user" : "reflects the contribution of server activity from that user"}.
155155+ The percentage {
156156+ cookies.get("lbc") !== "server"
157157+ ? "indicates the gap in messages needed to surpass the next user"
158158+ : "reflects the contribution of server activity from that user"
159159+ }.
158160 </AccordionItem>
159161160162 {guild && "id" in guild && guild?.inviteUrl ?