Remove usage of .at() for browser compat

This commit is contained in:
Tom Moor
2023-10-28 22:22:10 -04:00
parent 7b98ce3514
commit 4d3655bc6c

View File

@@ -157,7 +157,7 @@ export default class AuthStore extends Store<Team> {
/** The current team */ /** The current team */
@computed @computed
get team() { get team() {
return this.orderedData.at(0); return this.orderedData[0];
} }
/** The current team's policies */ /** The current team's policies */