We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9402028 commit e8b8fbdCopy full SHA for e8b8fbd
1 file changed
Core/Sources/SuggestionWidget/SuggestionPanelContent/PromptToCodePanel.swift
@@ -38,7 +38,9 @@ extension PromptToCodePanel {
38
var body: some View {
39
HStack {
40
Button(action: {
41
- store.send(.selectionRangeToggleTapped)
+ withAnimation(.linear(duration: 0.1)) {
42
+ store.send(.selectionRangeToggleTapped)
43
+ }
44
}) {
45
WithViewStore(
46
store,
0 commit comments