Skip to content

Commit

Permalink
fix: fix default export breaking netlify build
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelonah committed May 31, 2024
1 parent 57c96ca commit db33a38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/db/schemas/history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ const historiesTable = {
histories: '++id, date',
};

export default {
const history = {
name: 'histories',
schema: HistorySchema,
table: historiesTable,
};

export default history;

0 comments on commit db33a38

Please sign in to comment.