Skip to content

Commit

Permalink
example: Fix type check
Browse files Browse the repository at this point in the history
  • Loading branch information
cadivus committed Dec 13, 2024
1 parent e2ef4ab commit 562f9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/lib/widgets/sensor_configuration_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SensorConfigurationView extends StatefulWidget {

static List<SensorConfigurationView>? createSensorConfigurationViews(
Wearable wearable) {
if (wearable is SensorManager) {
if (wearable is SensorConfigurationManager) {
final sensorManager = wearable as SensorConfigurationManager;
return sensorManager.sensorConfigurations
.map(
Expand Down

0 comments on commit 562f9ba

Please sign in to comment.