···11+diff --git a/node_modules/expo-font/ios/FontLoaderModule.swift b/node_modules/expo-font/ios/FontLoaderModule.swift
22+index 183480f..7b64f6e 100644
33+--- a/node_modules/expo-font/ios/FontLoaderModule.swift
44++++ b/node_modules/expo-font/ios/FontLoaderModule.swift
55+@@ -2,10 +2,9 @@ import ExpoModulesCore
66+77+ public final class FontLoaderModule: Module {
88+ // could be a Set, but to be able to pass to JS we keep it as an array
99+- private var registeredFonts: [String]
1010++ private lazy var registeredFonts: [String] = queryCustomNativeFonts()
1111+1212+ public required init(appContext: AppContext) {
1313+- self.registeredFonts = queryCustomNativeFonts()
1414+ super.init(appContext: appContext)
1515+ }
1616+