<!--
{
  "availability" : [
    "iOS: 26.0.0 -",
    "iPadOS: 26.0.0 -",
    "macCatalyst: 26.0.0 -",
    "macOS: 26.0.0 -",
    "tvOS: 26.0.0 -",
    "visionOS: 26.0.0 -",
    "watchOS: 26.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "TipKit",
  "identifier" : "/documentation/TipKit/Tip/resetEligibility()",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "TipKit"
    ],
    "preciseIdentifier" : "s:6TipKit0A0PAAE16resetEligibilityyyYaF"
  },
  "title" : "resetEligibility()"
}
-->

# resetEligibility()

Reset a previously invalidated tip.

```
func resetEligibility() async
```

## Overview

By default tips that are invalidated will never become eligible for display.
This prevents tips about already discovered features from appearing.
Resetting a tip changes its status back to `.pending` or `.available` and makes it re-eligible for display.

```swift
struct CatTrackSettings: View {
    var body: some View {
        VStack {
            LocationSettings()
            MapSettings()

            Button("Reset Map Tips") {
                Task {
                    let reorientMapTip = ReorientMapTip()
                    await reorientMapTip.resetEligibility()

                    let compassMapTip = CompassMapTip()
                    await compassMapTip.resetEligibility()
                }
            }
        }
    }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)