Index: pages/forge/forge.telefunc.ts
===================================================================
--- pages/forge/forge.telefunc.ts	(revision e7f1bfa7ce76200b61fe01419065e5b4c1bc1f96)
+++ pages/forge/forge.telefunc.ts	(revision 98543934547eec4612872caf60e2c3b4464ff5e9)
@@ -62,10 +62,11 @@
 }
 
-export async function onGetCompatibleComponents({ buildId, componentType }: { buildId: number, componentType: string }) {
+export async function onGetCompatibleComponents({ buildId, componentType, limit, sort }
+                                                : { db: Database, buildId: number, componentType: string, limit?: number, sort?: string }) {
     const { c, userId } = requireUser()
 
     if(!Number.isInteger(buildId) || buildId <= 0) throw Abort();
 
-    const compatibleComponents = await drizzleQueries.getCompatibleComponents(c.db, buildId, componentType);
+    const compatibleComponents = await drizzleQueries.getCompatibleComponents(c.db, buildId, componentType, limit, sort);
 
     if(!compatibleComponents) throw Abort();
