Skip to content

Commit

Permalink
Fixes lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wbreza committed Oct 9, 2024
1 parent c6e5b15 commit 1e210fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/azd/pkg/prompt/prompter.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func (p *DefaultPrompter) PromptResource(ctx context.Context, options PromptReso
choices[0] = fmt.Sprintf("Create a new %s", resourceTypeDisplayName)

for idx, resource := range resources {
parsedResource, err := arm.ParseResourceID(*&resource.Id)
parsedResource, err := arm.ParseResourceID(resource.Id)
if err != nil {
return nil, fmt.Errorf("parsing resource id: %w", err)
}
Expand Down

0 comments on commit 1e210fc

Please sign in to comment.