Update tooltip location

This commit is contained in:
Aaron William Po
2023-04-30 23:17:56 -04:00
parent adf1b55d10
commit 1a806e7aff
4 changed files with 17 additions and 7 deletions

View File

@@ -28,14 +28,14 @@ import logger from '../../config/pino/logger';
logger.info('Users created successfully.');
const locations = await createNewLocations({
numberOfLocations: 1600,
numberOfLocations: 500,
joinData: { users },
});
logger.info('Locations created successfully.');
const [breweryPosts, beerTypes] = await Promise.all([
createNewBreweryPosts({ numberOfPosts: 1500, joinData: { users, locations } }),
createNewBreweryPosts({ numberOfPosts: 450, joinData: { users, locations } }),
createNewBeerTypes({ joinData: { users } }),
]);
logger.info('Brewery posts and beer types created successfully.');