Skip to content

Commit

Permalink
exporter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSCar committed Feb 24, 2025
1 parent 20e4b4b commit a675394
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
<p class="m-0 mt-2">
This is a public API that comes from very humble beginnings, but is only made possible due the the support of Patreon subscribers.
As such, monthly requests are alotted by Patreon level. Patreon registration is NOT required for the free tier. Monthly call limits are as follows:
</p>
<ul>
<li>Free Tier: 500 monthly calls</li>
<li>Tier 1 ($1/mo): 5000 monthly calls</li>
<li>Tier 2 ($5/mo): 30,000 monthly calls</li>
<li>Tier 3 ($10/mo): 75,000 monthly calls (+ unlimited GraphQL requests)</li>
</ul>
If you need more than 75,000 monthly calls, please contact me directly.
</p>
</template>
</Card>
<BlogGroup />
Expand Down
2 changes: 1 addition & 1 deletion stores/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const useNavigationStore = defineStore("navigation", () => {
target: "_blank"
},
{
label: "JavaScript",
label: "TypeScript",
url: "https://www.npmjs.com/package/cfbd",
target: "_blank"
},
Expand Down
6 changes: 3 additions & 3 deletions utils/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function flattenData(key: string | undefined, data: any) {
flattened.push(...type.athletes.map((a: DataObject) => {
return {
game_id: game.id,
school: team.school,
team: team.team,
conference: team.conference,
homeAway: team.homeAway,
points: team.points,
Expand All @@ -46,7 +46,7 @@ export function flattenData(key: string | undefined, data: any) {
flattened.push(...team.stats.map((s: DataObject) => {
return {
game_id: game.id,
school: team.school,
team: team.team,
conference: team.conference,
homeAway: team.homeAway,
points: team.points,
Expand Down Expand Up @@ -210,4 +210,4 @@ const flatten = (data: DataObject) => {
}
recurse(data, "");
return result;
};
};

0 comments on commit a675394

Please sign in to comment.