Skip to content

Commit b6b4cd5

Browse files
authored
Fix sponsored by text appearing after sponsors (#3008)
fixes the "sponsored by" text appearing after the actual sponsors. before: <img width="1146" alt="image" src="https://user-images.githubusercontent.com/11602629/235602845-a99d75d8-e0c9-4f18-a6b0-f6d42c2678a8.png"> after: <img width="1189" alt="image" src="https://user-images.githubusercontent.com/11602629/235603071-ef2b1362-a321-4c9a-82e7-3e5be535a373.png"> let me know if any other changes are recommended =)
1 parent 4998bc3 commit b6b4cd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/src/components/Chat/InferencePoweredBy.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ const rootProps = {
1414
export const InferencePoweredBy = () => {
1515
return (
1616
<Flex direction="column" justifyContent="center" borderTopWidth="1px" p="2">
17+
<Flex justifyContent="center" pb="2" fontSize="sm" color="gray.500">
18+
Sponsored By
19+
</Flex>
1720
{sponsors.map((id) => (
1821
<Fragment key={id}>
1922
<TeamMember {...data.people[id]} rootProps={rootProps}></TeamMember>
2023
</Fragment>
2124
))}
22-
<Flex justifyContent="center" pb="2" fontSize="sm" color="gray.500">
23-
Sponsored By
24-
</Flex>
2525
</Flex>
2626
);
2727
};

0 commit comments

Comments
 (0)