hi there! it seems like "Create Schedule
hi there! it seems like "Create Schedule" and "Manage Schedules" are no longer customizable from the embed config - they were a few weeks ago when it was "Schedule" and "Manage Schedule". Any help is appreciated!
4 Replies
What is the TS Version as well as SDK Version you are using ? What kind of customization you were using ?
SDK is 1.32.4! I am trying to update it like this:
'Create Schedule': 'Schedule Summary',
'Manage Schedule': 'Manage Schedule Summary',
'Manage Schedules': 'Manage Schedule Summary',
Lemme check this
I see that in UI, 'Manage Schedule has become Manage schedule. and these string are Case sensitive.
You can do:
```strings: {
'Schedule': 'Schedule Summary',
'schedule': 'Schedule Summary',
'schedules': 'Schedule Summary',
'Schedules': 'Schedule Summary',
}
Ahh great catch!! That was it, thank you!!