@@ -168,9 +168,6 @@ impl Ui<'_> {
168168 UnfixableInstance :: SameRangeMismatch => {
169169 info ! ( "{count} {icon} {name} {state_links}" ) ;
170170 }
171- UnfixableInstance :: DependsOnMissingSnapTarget => {
172- info ! ( "{count} {icon} {name} {state_links}" ) ;
173- }
174171 }
175172 }
176173 InvalidInstance :: Conflict ( variant) => {
@@ -201,6 +198,9 @@ impl Ui<'_> {
201198 InstanceState :: Suspect ( variant) => {
202199 let icon = self . warn_icon ( ) ;
203200 match variant {
201+ SuspectInstance :: DependsOnMissingSnapTarget => {
202+ info ! ( "{count} {icon} {name} {state_links}" ) ;
203+ }
204204 SuspectInstance :: RefuseToBanLocal => {
205205 info ! ( "{count} {icon} {name} {state_links}" ) ;
206206 }
@@ -332,9 +332,6 @@ impl Ui<'_> {
332332 UnfixableInstance :: SameRangeMismatch => {
333333 info ! ( " {icon} {actual} {location} {state_link}" ) ;
334334 }
335- UnfixableInstance :: DependsOnMissingSnapTarget => {
336- info ! ( " {icon} {actual} {location} {state_link}" ) ;
337- }
338335 } ,
339336 InvalidInstance :: Conflict ( variant) => match variant {
340337 SemverGroupAndVersionConflict :: MatchConflictsWithHighestOrLowestSemver => {
@@ -361,6 +358,9 @@ impl Ui<'_> {
361358 InstanceState :: Suspect ( variant) => {
362359 let icon = self . warn_icon ( ) ;
363360 match variant {
361+ SuspectInstance :: DependsOnMissingSnapTarget => {
362+ info ! ( " {icon} {actual} {location} {state_link}" ) ;
363+ }
364364 SuspectInstance :: RefuseToBanLocal => {
365365 info ! ( " {icon} {actual} {location} {state_link}" ) ;
366366 }
0 commit comments