fix: fixed activity aggregation and new user tracking (#230)

This commit is contained in:
guarzo
2025-03-11 09:20:10 -06:00
committed by GitHub
parent 2bb45b312c
commit 1590c848c9
18 changed files with 820 additions and 822 deletions

View File

@@ -146,6 +146,30 @@ export const useMapRootHandlers = (ref: ForwardedRef<MapHandlers>) => {
userSettingsUpdated(data as CommandUserSettingsUpdated);
break;
case Commands.showTracking:
// This command is handled by the TrackAndFollow component
break;
case Commands.hideTracking:
// This command is handled by the TrackAndFollow component
break;
case Commands.showActivity:
// This command is handled by the CharacterActivity component
break;
case Commands.hideActivity:
// This command is handled by the CharacterActivity component
break;
case Commands.toggleTrack:
// This command is handled by the TrackAndFollow component
break;
case Commands.toggleFollow:
// This command is handled by the TrackAndFollow component
break;
default:
console.warn(`JOipP Interface handlers: Unknown command: ${type}`, data);
break;