Skip to content

Commit f5f95e8

Browse files
committed
add more design changes
1 parent f18cc68 commit f5f95e8

File tree

11 files changed

+20
-13
lines changed

11 files changed

+20
-13
lines changed
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 4 additions & 2 deletions
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

packages/backend/src/apps/webhook/assets/favicon.svg

Lines changed: 1 addition & 1 deletion
Loading

packages/frontend/src/components/ChooseConnectionSubstep/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,9 @@ function ChooseConnectionSubstep(
139139
connection,
140140
testResultLoading,
141141
isTestStepValid,
142-
testConnectionData?.testConnection?.message,
143142
application.key,
143+
testConnectionData?.testConnection?.message,
144+
currentUser?.email,
144145
])
145146

146147
return (

packages/frontend/src/components/FlowStepConfigurationModal/ChooseAppAndEvent/FeedbackFooter.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ import * as URLS from '@/config/urls'
55

66
export default function FeedbackFooter() {
77
return (
8-
<ModalFooter justifyContent="center" gap={2} pb={0}>
9-
<Text textStyle="caption-1">{`Can't find what you need? Let us know`}</Text>
8+
<ModalFooter justifyContent="center" gap={1} pb={0}>
9+
<Text textStyle="caption-1">{`Can't find what you need?`}</Text>
1010
<Link
1111
href={URLS.FEEDBACK_FORM_LINK}
1212
isExternal
1313
color="interaction.links.neutral-default"
14-
mt={1}
14+
display="flex"
15+
alignItems="center"
16+
gap={1}
1517
>
18+
<Text textStyle="caption-1">Let us know</Text>
1619
<Icon as={BiLinkExternal} />
1720
</Link>
1821
</ModalFooter>

packages/frontend/src/components/FlowStepConfigurationModal/ChooseAppAndEvent/ToolboxEvent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function ToolboxEvent(props: ToolboxEventProps): JSX.Element {
1919
const { action, isDisabled, onSelectAppEvent } = props
2020
return (
2121
<TouchableTooltip
22-
label={isDisabled ? 'This can only be used in the last step' : ''}
22+
label={isDisabled ? 'This can only be used as the last step' : ''}
2323
placement="bottom"
2424
openDelay={100}
2525
closeDelay={100}

0 commit comments

Comments
 (0)