Skip to content

Commit 9a971b0

Browse files
committed
fix hover blinking on enable AI icon
1 parent 5261ade commit 9a971b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export const TabsUI = (props: TabsUIProps) => {
234234
<button
235235
data-id="explain-editor"
236236
id='explain_btn'
237-
className='btn text-ai pl-2 pr-0 py-0 d-flex'
237+
className='btn text-ai pl-2 pr-0 py-0'
238238
disabled={!(tabsState.currentExt === 'sol') || explaining}
239239
onClick={async () => {
240240
const path = active().substr(active().indexOf('/') + 1, active().length)
@@ -268,7 +268,7 @@ export const TabsUI = (props: TabsUIProps) => {
268268
<button
269269
data-id="remix_ai_switch"
270270
id='remix_ai_switch'
271-
className="btn ai-switch text-ai pl-2 pr-0 py-0 d-flex"
271+
className="btn ai-switch text-ai pl-2 pr-0 py-0"
272272
disabled={!(tabsState.currentExt === 'sol' )}
273273
onClick={async () => {
274274
await props.plugin.call('settings', 'updateCopilotChoice', !ai_switch)

0 commit comments

Comments
 (0)