Carousel Not Displaying Outside Of Studio
# 🤝help
n
When I chat in the studio I see the carousel display all the cards. But when I use the chat outside of studio the carousel doesn't display. This is the code to get the data
Copy code
const url = 'https://laternerd.github.io/Alexandra-George-Real-Estate/rentals.json'

try {
  const response = await axios.get(url)
  if (response.status === 200) {
    workflow.buyData = response.data
  }
} catch (error) {
  console.error(error)
}

https://cdn.discordapp.com/attachments/1137926045270544444/1137926045417357414/Screenshot_2023-08-06_at_6.43.45_PM.png

https://cdn.discordapp.com/attachments/1137926045270544444/1137926045702574220/Screenshot_2023-08-06_at_6.43.28_PM.png

h
You can check your logs what the error is, but I think that you should have Subtitle because it's a required field

https://cdn.discordapp.com/attachments/1137926045270544444/1138048753849356318/image.png

n
Works now! Thanks Teodor 👍
2 Views