File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ async function processShareTargetData() {
481
481
// Determines the flow configuration (title and steps) based on shared data
482
482
function determineFlowConfiguration ( shareData ) {
483
483
// Default flow title and steps
484
- let flowTitle = shareData . title || 'Shared Images Flow' ;
484
+ let flowTitle = 'Shared Images Flow' ;
485
485
let flowSteps = [
486
486
{
487
487
type : 'resize-width-if-larger' ,
Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ self.addEventListener('fetch', event => {
109
109
110
110
// Extract data
111
111
const data = {
112
- title : formData . get ( 'title' ) || '' ,
113
112
text : formData . get ( 'text' ) || '' ,
114
113
url : formData . get ( 'url' ) || ''
115
114
} ;
@@ -126,7 +125,6 @@ self.addEventListener('fetch', event => {
126
125
127
126
// Create an object with the share data including file names
128
127
const shareData = {
129
- title : data . title ,
130
128
text : data . text ,
131
129
url : data . url ,
132
130
timestamp : Date . now ( ) ,
You can’t perform that action at this time.
0 commit comments