Skip to content

Commit

Permalink
fix accidentally commented out purchasablesTable reference which is…
Browse files Browse the repository at this point in the history
… not deprecated
  • Loading branch information
brianfeister committed Jan 2, 2025
1 parent 9519cda commit 2e6dda4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions stacks/ApiStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ export function ApiStack({ stack, app }: StackContext & { app: any }) {
const api = new Api(stack, 'api', {
defaults: {
function: {
// Bind the eventsTable name to our API

bind: [
seshuSessionsTable,
// registrationsTable, // deprecated
Expand Down
6 changes: 3 additions & 3 deletions stacks/StorageStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ export function StorageStack({ stack }: StackContext) {
});

return {
// registrationsTable,
// registrationsTable, // deprecated
registrationFieldsTable,
seshuSessionsTable,
// purchasesTable, // deprecated
purchasesTableV2,
// purchasablesTable,
// eventRsvpsTable,
purchasablesTable,
// eventRsvpsTable, // deprecated
};
}

0 comments on commit 2e6dda4

Please sign in to comment.