Skip to content

Commit eaad7c3

Browse files
committed
fix: remove unnecessary dbInstance parameter from createPluginTables call
1 parent 0dddbd0 commit eaad7c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const createServer = async () => {
8585

8686
// Create plugin tables in the database (Note: better handled by migrations)
8787
// This function might need dbInstance if it's to do anything beyond logging
88-
await createPluginTables(dbInstance, pluginManager.getAllPlugins());
88+
await createPluginTables(pluginManager.getAllPlugins());
8989

9090
// Initialize plugin database extensions (e.g., run plugin-specific setup)
9191
// Ensure getDatabaseExtensions() returns plugins that have a DB extension

0 commit comments

Comments
 (0)