Skip to content

Commit 2235083

Browse files
committed
38662 - Graphql type error fix
1 parent be7b88d commit 2235083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/CustomerGraphQl/Model/Customer/GetCustomSelectedOptionAttributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function execute(string $entityType, array $customAttribute): ?array
5555
continue;
5656
}
5757
$result[] = [
58-
'uid' => $this->uid->encode($option->getValue()),
58+
'uid' => $this->uid->encode((string) $option->getValue()),
5959
'value' => $option->getValue(),
6060
'label' => $option->getLabel()
6161
];

0 commit comments

Comments
 (0)