Skip to content

Commit

Permalink
🎨 Removed reduntant undefined type
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAsel committed Aug 20, 2024
1 parent c5ddc22 commit 256831d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/encounter-api-calls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,16 +119,16 @@ export async function encounterGenerator(body: {
rarities: rarities[] | undefined;
families: string[] | undefined;
creature_types: string[] | undefined;
challenge?: challenges | undefined;
challenge: challenges | undefined;
party_levels: number[];
min_creatures?: number;
max_creatures?: number;
min_creatures: number | undefined;
max_creatures: number | undefined;
allow_weak_variants: boolean;
allow_elite_variants: boolean;
creature_roles: roles[] | undefined;
is_pwl_on: boolean;
pathfinder_version: string;
adventure_group?: adventure_groups | undefined;
adventure_group: adventure_groups | undefined;
}) {
try {
const requestOptions = {
Expand Down

0 comments on commit 256831d

Please sign in to comment.