Remove usage of .at() for browser compat
This commit is contained in:
@@ -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 */
|
||||||
|
|||||||
Reference in New Issue
Block a user