Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Restore Data fails

ANSWERED

Hello,

I added Icons to my select. 

<Select
            label={'Background Image'}
            settingsKey="myPic"
              options={[
              {name: "Kentucky.png", value : {icon: img2}},
              {name: "Canyon.png", value : {icon: img3}},
              {name: "Ohio.png", value : {icon: img4}},
              {name: "Split.png", value : {icon: img5}},
              {name: "Hawaii.png", value : {icon: img6}},
              {name: "Bahamas.png", value : {icon: img7}}
            ]}
            
            renderItem={
              (option) =>
                <TextImageRow
                  label={option.name}
                  sublabel="Images"
                  icon={option.value.icon}
                />
            }
           
       />

Everything displays correctly, but I get the following error and my picture does not update.  Any thoughts?

 

[6:35:46 PM]RangeError: Encoded data too large: 44809 bytes

Best Answer
0 Votes
1 BEST ANSWER

Accepted Solutions
1 REPLY 1