Fix incorrect gear name in tweet

This commit is contained in:
Matt Isenhower
2022-09-21 07:05:22 -07:00
parent 7e05672300
commit 90fbe12eab

View File

@@ -10,7 +10,7 @@ export default class RegularGearTweet extends TweetGenerator
async getLatestGear() {
await this.preparePinia();
return useGearStore().regularGear?.[0];
return useGearStore().regularGear?.slice().reverse()[0];
}
async getDataTime() {