Skip to content

Commit af9aebd

Browse files
committed
fix: rebase fixes
1 parent 11f32e9 commit af9aebd

File tree

5 files changed

+19
-16
lines changed

5 files changed

+19
-16
lines changed

docker/colony-cdapp-dev-env-block-ingestor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM colony-cdapp-dev-env/base:latest
22

3-
ENV BLOCK_INGESTOR_HASH=caa5de336ecee1885682b198e039e3a520ce39a5
3+
ENV BLOCK_INGESTOR_HASH=498ff1793cc73a1fe029adda1417000b4edd066a
44

55
# Declare volumes to set up metadata
66
VOLUME [ "/colonyCDapp/amplify/mock-data" ]

src/components/v5/common/CompletedAction/partials/StreamingPayment/StreamingPayment.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,6 @@ const StreamingPayment: FC<StreamingPaymentProps> = ({
268268
contentWrapperClassName={clsx('z-[65] sm:min-w-[11.25rem]', {
269269
'!left-6 right-6': isMobile,
270270
})}
271-
dropdownPlacementProps={{
272-
top: 12,
273-
}}
274271
items={meatballOptions}
275272
/>
276273
</div>

src/components/v5/shared/MeatBallMenu/MeatBallMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const MeatBallMenu: FC<MeatBallMenuProps> = ({
8787
<MenuContainer
8888
className={clsx(
8989
contentWrapperClassName,
90-
'absolute !left-0 z-dropdown w-[calc(100vw-2.4rem)] min-w-[calc(100vw-2.4rem)] overflow-y-auto px-6 py-4 sm:w-fit sm:min-w-fit',
90+
'absolute !right-0 z-dropdown w-[calc(100vw-2.4rem)] min-w-[calc(100vw-2.4rem)] overflow-y-auto px-6 py-4 sm:w-fit sm:min-w-fit',
9191
)}
9292
hasShadow
9393
rounded="s"

src/graphql/generated.ts

Lines changed: 14 additions & 9 deletions
Large diffs are not rendered by default.

src/redux/sagas/expenditures/createStreamingPayment.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
import moveDecimal from 'move-decimal-point';
88
import { call, fork, put, takeEvery } from 'redux-saga/effects';
99

10-
import { mutateWithAuthRetry } from '~apollo/utils.ts';
1110
import { ContextModule, getContext } from '~context/index.ts';
1211
import {
1312
CreateStreamingPaymentMetadataDocument,
@@ -179,7 +178,9 @@ function* createStreamingPaymentAction({
179178
} = yield waitForTxResult(createStreamingPayment.channel);
180179

181180
if (customActionTitle) {
182-
yield createActionMetadataInDB(txHash, customActionTitle);
181+
yield createActionMetadataInDB(txHash, {
182+
customTitle: customActionTitle,
183+
});
183184
}
184185

185186
if (annotationMessage) {

0 commit comments

Comments
 (0)