Skip to content

Commit 8c1eea4

Browse files
committedDec 16, 2020
fix(integrations): pass correct value to binding
This fixes regression introduced by (bad) fix for shadowed name.
1 parent 9e0914d commit 8c1eea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/server/api/schema.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3217,7 +3217,7 @@ const rootMutations = {
32173217
.returning("*");
32183218

32193219
// Kick off initial list load
3220-
await refreshExternalSystem(externalSystem.id);
3220+
await refreshExternalSystem(created.id);
32213221

32223222
return created;
32233223
},

0 commit comments

Comments
 (0)
Please sign in to comment.