Skip to content

Commit a189293

Browse files
committed
🧹
1 parent 5720bae commit a189293

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

site/src/components/Resources/AgentRow.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -319,15 +319,15 @@ export const AgentRow: FC<AgentRowProps> = ({
319319
alt=""
320320
width={16}
321321
height={16}
322-
style={{
322+
css={{
323323
marginRight: 8,
324324
}}
325325
/>
326326
);
327327
} else {
328328
icon = (
329329
<div
330-
style={{
330+
css={{
331331
width: 16,
332332
height: 16,
333333
marginRight: 8,
@@ -359,7 +359,7 @@ export const AgentRow: FC<AgentRowProps> = ({
359359
) {
360360
icon = (
361361
<div
362-
style={{
362+
css={{
363363
minWidth: 16,
364364
width: 16,
365365
height: 16,
@@ -370,7 +370,7 @@ export const AgentRow: FC<AgentRowProps> = ({
370370
}}
371371
>
372372
<div
373-
style={{
373+
css={{
374374
height: nextChangesSource ? "50%" : "100%",
375375
width: 4,
376376
background: "hsl(222, 31%, 25%)",
@@ -379,7 +379,7 @@ export const AgentRow: FC<AgentRowProps> = ({
379379
/>
380380
{nextChangesSource && (
381381
<div
382-
style={{
382+
css={{
383383
height: 4,
384384
width: "50%",
385385
top: "calc(50% - 2px)",

site/src/components/Resources/AgentRowPreview.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,10 @@ const styles = {
143143
fontWeight: 600,
144144
},
145145

146-
agentOS: (theme) => ({
146+
agentOS: {
147147
textTransform: "capitalize",
148148
fontSize: 14,
149-
color: theme.palette.text.secondary,
150-
}),
149+
},
151150

152151
agentData: (theme) => ({
153152
fontSize: 14,

0 commit comments

Comments
 (0)