Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vab5 committed Feb 29, 2024
1 parent f9cf8aa commit c07a73b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/controllers/Passenger.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ import type { Request, Response } from 'express';
import Airtable from 'airtable';
import dotenv from 'dotenv';
import type { FieldSet, Record } from 'airtable';
import Joi from 'joi';
dotenv.config();

const base = new Airtable({
apiKey: process.env.AIRTABLE_API_KEY || '',
}).base('appwPsfAb6U8CV3mf');

const Joi = require('joi');

/**
* Get all of the related passengers for a user (people they have flown with in the past)
*
Expand Down

0 comments on commit c07a73b

Please sign in to comment.