Skip to content

Commit a7aad74

Browse files
chore: fix lint
1 parent d02308d commit a7aad74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/sim/app/(home)/components/navbar/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export default function Navbar({ logoOnly = false, blogPosts = [] }: NavbarProps
234234
<>
235235
<Link
236236
href='/login'
237-
className='inline-flex h-[30px] items-center rounded-[5px] border border-[var(--landing-border-strong)] px-[9px] text-[var(--landing-text)] text-[13.5px] transition-colors hover:bg-[var(--landing-bg-elevated)]'
237+
className='inline-flex h-[30px] items-center rounded-[5px] border border-[var(--landing-border-strong)] px-[9px] text-[13.5px] text-[var(--landing-text)] transition-colors hover:bg-[var(--landing-bg-elevated)]'
238238
aria-label='Log in'
239239
>
240240
Log in

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/chat/chat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ export function Chat() {
11431143
{isStreaming ? (
11441144
<Button
11451145
onClick={handleStopStreaming}
1146-
className='h-[22px] w-[22px] rounded-full border-0 p-0 transition-colors bg-[var(--text-primary)] hover-hover:bg-[var(--text-secondary)] dark:bg-[var(--border-1)] dark:hover-hover:bg-[var(--text-body)]'
1146+
className='h-[22px] w-[22px] rounded-full border-0 bg-[var(--text-primary)] p-0 transition-colors hover-hover:bg-[var(--text-secondary)] dark:bg-[var(--border-1)] dark:hover-hover:bg-[var(--text-body)]'
11471147
>
11481148
<Square className='h-2.5 w-2.5 fill-white text-white dark:fill-black dark:text-black' />
11491149
</Button>

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/panel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ export const Panel = memo(function Panel() {
664664
<Deploy activeWorkflowId={activeWorkflowId} userPermissions={userPermissions} />
665665
<Button
666666
className='h-[30px] gap-2 px-2.5'
667-
data-tour='run-button'
667+
data-tour='run-button'
668668
variant={isExecuting ? 'active' : 'tertiary'}
669669
onClick={isExecuting ? cancelWorkflow : () => runWorkflow()}
670670
disabled={!isExecuting && isButtonDisabled}

0 commit comments

Comments
 (0)