Skip to content

Commit

Permalink
Merge pull request #276 from velocitycareerlabs/VL-8413-v2.6.5
Browse files Browse the repository at this point in the history
chore: v2.6.5c- remove Sendable
  • Loading branch information
michaelavoyan authored Oct 16, 2024
2 parents 1bee00b + 9ba2d4e commit 6e83bbe
Show file tree
Hide file tree
Showing 5 changed files with 174 additions and 174 deletions.
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ PODS:
- React-perflogger (= 0.73.6)
- SocketRocket (0.6.1)
- VCL (2.6.3)
- velocitycareerlabs-vcl-react-native (2.6.4):
- velocitycareerlabs-vcl-react-native (2.6.5):
- glog
- RCT-Folly (= 2022.05.16.00)
- React-Core
Expand Down Expand Up @@ -1277,7 +1277,7 @@ SPEC CHECKSUMS:
ReactCommon: 2aa35648354bd4c4665b9a5084a7d37097b89c10
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
VCL: b9dc01388960930e469058e6c0645d1bde20e516
velocitycareerlabs-vcl-react-native: 9aa8bb021cb503d355a4978c761e85d1dfcdea89
velocitycareerlabs-vcl-react-native: 974bf5249395f6e2f4a044be345eafeb1ec088c0
Yoga: 805bf71192903b20fc14babe48080582fee65a80

PODFILE CHECKSUM: b019a9f171e06cc915918d81c74115c30ea1b65c
Expand Down
4 changes: 2 additions & 2 deletions ios/Extensions/StringExtensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
import Foundation

extension String {
func toDictionary() -> [String: Sendable]? {
func toDictionary() -> [String: Any]? {
if let data = self.data(using: .utf8) {
do {
return try JSONSerialization.jsonObject(with: data, options: []) as? [String: Sendable]
return try JSONSerialization.jsonObject(with: data, options: []) as? [String: Any]
} catch {
}
}
Expand Down
Loading

0 comments on commit 6e83bbe

Please sign in to comment.