diff --git a/src/constants/notifications.ts b/src/constants/notifications.ts index 86714a42..1ea617be 100644 --- a/src/constants/notifications.ts +++ b/src/constants/notifications.ts @@ -197,6 +197,17 @@ export const NOTIFY_CAMERA_SHARE_METHOD = { noText: "we will share another way", }; +// SharedPhotoView.vue constants +export const NOTIFY_SHARED_PHOTO_LOAD_ERROR = { + title: "Error", + message: "Got an error loading this data.", +}; + +export const NOTIFY_SHARED_PHOTO_SAVE_ERROR = { + title: "Error", + message: "There was a problem saving the picture.", +}; + // OfferDialog.vue constants export const NOTIFY_OFFER_SETTINGS_ERROR = { title: "Error", diff --git a/src/views/SharedPhotoView.vue b/src/views/SharedPhotoView.vue index 8dadd71f..e82cf553 100644 --- a/src/views/SharedPhotoView.vue +++ b/src/views/SharedPhotoView.vue @@ -1,3 +1,40 @@ +