mirror of
https://github.com/penpot/penpot.git
synced 2025-05-11 12:06:38 +02:00
🐛 Fix incorrect usage of pool on rename-page mutation.
This commit is contained in:
parent
2a7d516306
commit
0d3ff63545
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@
|
||||||
set name = $2
|
set name = $2
|
||||||
where id = $1
|
where id = $1
|
||||||
and deleted_at is null"]
|
and deleted_at is null"]
|
||||||
(-> (db/query-one db/pool [sql id name])
|
(-> (db/query-one conn [sql id name])
|
||||||
(p/then su/constantly-nil))))
|
(p/then su/constantly-nil))))
|
||||||
|
|
||||||
;; --- Mutation: Update Page
|
;; --- Mutation: Update Page
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue