Just found the issue, seems like strings are trimmed by default in Ash adding the following to the field fixed it:
attribute :male_content, :string do
allow_nil? false
constraints trim?: false
end
Just found the issue, seems like strings are trimmed by default in Ash adding the following to the field fixed it:
attribute :male_content, :string do
allow_nil? false
constraints trim?: false
end