diff --git a/scripts/sign-macos-pkg.sh b/scripts/sign-macos-pkg.sh index bb590d1aa1..9e1d79355e 100755 --- a/scripts/sign-macos-pkg.sh +++ b/scripts/sign-macos-pkg.sh @@ -86,7 +86,7 @@ if [[ -d "${TARGET}" ]]; then spctl --assess --type execute --verbose=2 "${TARGET}" else echo "WARNING: The 'open' type security assesment is disabled due to lack of 'Notarization'" - # Issue: https://github.com/status-im/status-react/pull/9172 + # Issue: https://github.com/status-im/status-mobile/pull/9172 # Details: https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution #spctl --assess --type open --context context:primary-signature --verbose=2 "${OBJECT}" fi diff --git a/src/app_service/service/message/service.nim b/src/app_service/service/message/service.nim index 664eb5a982..3e0da9ccae 100644 --- a/src/app_service/service/message/service.nim +++ b/src/app_service/service/message/service.nim @@ -655,7 +655,7 @@ QtObject: ) self.threadpool.start(arg) -# See render-inline in status-react/src/status_im/ui/screens/chat/message/message.cljs +# See render-inline in status-mobile/src/status_im/ui/screens/chat/message/message.cljs proc renderInline(self: Service, parsedText: ParsedText): string = let value = escape_html(parsedText.literal) .multiReplace(("\r\n", "
")) @@ -688,7 +688,7 @@ proc renderInline(self: Service, parsedText: ParsedText): string = else: result = fmt(" {value} ") -# See render-block in status-react/src/status_im/ui/screens/chat/message/message.cljs +# See render-block in status-mobile/src/status_im/ui/screens/chat/message/message.cljs proc getRenderedText*(self: Service, parsedTextArray: seq[ParsedText]): string = for parsedText in parsedTextArray: case parsedText.type: diff --git a/ui/app/AppLayouts/Browser/helpers/provider.js b/ui/app/AppLayouts/Browser/helpers/provider.js index 6d7e49101d..32dce3db90 100644 --- a/ui/app/AppLayouts/Browser/helpers/provider.js +++ b/ui/app/AppLayouts/Browser/helpers/provider.js @@ -794,7 +794,7 @@ You may add additional accurate notices of copyright ownership. (function(){ // Based on - // https://github.com/status-im/status-react/blob/f9fb4d6974138a276b0cdcc6e4ea1611063e70ca/resources/js/provider.js + // https://github.com/status-im/status-mobile/blob/f9fb4d6974138a276b0cdcc6e4ea1611063e70ca/resources/js/provider.js if(typeof EthereumProvider === "undefined"){ let callbackId = 0; let callbacks = {}; diff --git a/ui/imports/shared/controls/GasSelector.qml b/ui/imports/shared/controls/GasSelector.qml index 3df67bbb81..5af58b0be4 100644 --- a/ui/imports/shared/controls/GasSelector.qml +++ b/ui/imports/shared/controls/GasSelector.qml @@ -44,8 +44,8 @@ Item { property bool advancedMode: false // TODO: change these values false once EIP1559 suggestions are revised - property double perGasTipLimitFloor: 1 // Matches status-react minimum-priority-fee - property double perGasTipLimitAverage: formatDec(root.suggestedFees.maxPriorityFeePerGas, 2) // 1.5 // Matches status-react average-priority-fee + property double perGasTipLimitFloor: 1 // Matches status-mobile minimum-priority-fee + property double perGasTipLimitAverage: formatDec(root.suggestedFees.maxPriorityFeePerGas, 2) // 1.5 // Matches status-mobile average-priority-fee property bool showPriceLimitWarning : false