File tree Expand file tree Collapse file tree 1 file changed +16
-18
lines changed
src/components/chat-widget Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Original file line number Diff line number Diff line change @@ -15,24 +15,22 @@ const { isMobile = false } = Astro.props;
1515 class ={ isMobile ? " mobile-chat-button" : " desktop-chat-button" }
1616 aria-label =" Open chat"
1717>
18- <div class ={ ` icon-wrapper ${isMobile ? " mobile-icon" : " " } ` } >
19- <Image
20- src ={ aptosLogoLight }
21- class =" hidden dark:block w-5 h-5"
22- alt =" Aptos Logo"
23- width ={ 20 }
24- height ={ 20 }
25- fetchpriority =" high"
26- />
27- <Image
28- src ={ aptosLogoDark }
29- class =" dark:hidden w-5 h-5"
30- alt =" Aptos Logo"
31- width ={ 20 }
32- height ={ 20 }
33- fetchpriority =" high"
34- />
35- </div >
18+ <Image
19+ src ={ aptosLogoLight }
20+ class =" hidden dark:block w-5 h-5"
21+ alt =" Aptos Logo"
22+ width ={ 20 }
23+ height ={ 20 }
24+ fetchpriority =" high"
25+ />
26+ <Image
27+ src ={ aptosLogoDark }
28+ class =" dark:hidden w-5 h-5"
29+ alt =" Aptos Logo"
30+ width ={ 20 }
31+ height ={ 20 }
32+ fetchpriority =" high"
33+ />
3634 <span class =" text-sm font-semibold" >AskAptos</span >
3735</button >
3836
You can’t perform that action at this time.
0 commit comments