Removed filter excluding links from user bindings.

This commit is contained in:
Dean 2022-10-05 12:40:53 +01:00
parent 749bfeeaae
commit acf583120a
1 changed files with 11 additions and 13 deletions

View File

@ -396,7 +396,6 @@ export const getUserBindings = () => {
bindings = keys.reduce((acc, key) => {
const fieldSchema = schema[key]
if (fieldSchema.type !== "link") {
acc.push({
type: "context",
runtimeBinding: `${safeUser}.${makePropSafe(key)}`,
@ -408,7 +407,6 @@ export const getUserBindings = () => {
category: "Current User",
icon: "User",
})
}
return acc
}, [])