feat: extended player profile #1

Merged
Kichiyaki merged 10 commits from feat/extended-player-profile into master 2023-01-26 06:30:22 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 6f1a7e5852 - Show all commits

View File

@ -56,7 +56,6 @@ interface UIConnector {
}
class UI {
private static readonly TRIBE_CHANGES_LIMIT = 30;
constructor(
private readonly player: Player,
private readonly connector: UIConnector
@ -164,7 +163,7 @@ class UI {
accessor: (tc) => new Date(tc.createdAt).toLocaleString(),
},
],
2,
30,
(page: number, limit: number) => {
return this.connector.tribeChanges(page, limit);
}