1 parent bbe4c95 commit b578b72Copy full SHA for b578b72
1 file changed
packages/app/src/components/session/open-in-app-v2.tsx
@@ -31,7 +31,10 @@ export function OpenInAppV2(props: { directory: () => string }) {
31
disabled={state.opening()}
32
aria-label={language.t("session.header.open.ariaLabel", { app: state.current().label })}
33
>
34
- <Show when={state.opening()} fallback={<AppIcon id={state.current().icon} class="size-[18px]" />}>
+ <Show
35
+ when={state.opening()}
36
+ fallback={<AppIcon id={state.current().icon} style={{ width: "20px", height: "20px" }} />}
37
+ >
38
<Spinner class="size-3.5" />
39
</Show>
40
</SplitButtonV2Action>
0 commit comments