Skip to content

Commit c2df77e

Browse files
remove ios 15+ references and update local-notifications version on Package.json
1 parent 7cc9485 commit c2df77e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@capacitor/haptics": "^8.0.0",
4141
"@capacitor/ios": "^8.2.0",
4242
"@capacitor/keyboard": "^8.0.0",
43-
"@capacitor/local-notifications": "^8.0.0",
43+
"@capacitor/local-notifications": "8.0.3-dev-2521-20260507T112139.0",
4444
"@capacitor/motion": "^8.0.0",
4545
"@capacitor/network": "^8.0.0",
4646
"@capacitor/preferences": "^8.0.0",

src/components/LocalNotificationsOptionsTest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default function LocalNotificationsOptionsTest() {
5858
</div>
5959
)}
6060
<IonList>
61-
<IonListHeader>Schedule with options (iOS 15+)</IonListHeader>
61+
<IonListHeader>Schedule with options</IonListHeader>
6262
<IonItem>
6363
<IonLabel position="stacked">Relevance Score (0.0 – 1.0)</IonLabel>
6464
<IonInput

src/components/NotificationChannelsTest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function NotificationChannelsTest({ notificationType }: Props) {
6565
try {
6666
if (notificationType === 'push') {
6767
const channel: PushNotificationChannel = {
68-
...newChannel,
68+
...(newChannel as PushNotificationChannel),
6969
id: newChannel.name,
7070
};
7171

0 commit comments

Comments
 (0)