| 1 |
const initialState = { |
| 2 |
isOpenCustomSocialMessageModal: false, |
| 3 |
// When true, the social-message modal opens straight to the AI Caption drawer |
| 4 |
// (set by the panel header's "Write With AI" button). |
| 5 |
autoOpenAICaption: false, |
| 6 |
isOpenProPopup: false, |
| 7 |
publishImmediately: false, |
| 8 |
isScheduled: false, |
| 9 |
scheduleType: '', |
| 10 |
scheduleDate: '', |
| 11 |
scheduleDateSource: '', |
| 12 |
unpublishOn: '', |
| 13 |
republishOn: '', |
| 14 |
advancedSchedule: false, |
| 15 |
advancedScheduleDate: '', |
| 16 |
socialShareSettings: { |
| 17 |
isSocialShareDisabled: false, |
| 18 |
socialBannerId: null, |
| 19 |
socialBannerUrl: '', |
| 20 |
}, |
| 21 |
}; |
| 22 |
|
| 23 |
export default initialState; |
| 24 |
|