Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .yarn/patches/react-phone-number-input-npm-3.4.5-dc2895c306.patch
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ index b844ef0fd183fe4f45e436bdb2382fc2987dcef2..8960834900e59a57e130521fd369e82f
--- a/react-styleguidist/project/source/helpers/phoneInputHelpers.js
+++ b/react-styleguidist/project/source/helpers/phoneInputHelpers.js
@@ -505,7 +505,9 @@ export function onPhoneDigitsChange(phoneDigits, {
// Generate the new `value` property.
let value
if (phoneDigits) {
- if (phoneDigits[0] === '+') {
+ if(phoneDigits === prevPhoneDigits) {
+ value = e164(phoneDigits, country, metadata)
+ } else if (phoneDigits[0] === '+') {
if (phoneDigits === '+') {
value = undefined
} else if (country && getInternationalPhoneNumberPrefix(country, metadata).indexOf(phoneDigits) !== 0) {
// Generate the new `value` property.
let value
if (phoneDigits) {
- if (phoneDigits[0] === '+') {
+ if(phoneDigits === prevPhoneDigits) {
+ value = e164(phoneDigits, country, metadata)
+ } else if (phoneDigits[0] === '+') {
Comment on lines +40 to +42
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Consistent with other occurrences - formatting and potential logic issues need to be addressed.

Prompt To Fix With AI
This is a comment left during a code review.
Path: .yarn/patches/react-phone-number-input-npm-3.4.5-dc2895c306.patch
Line: 40:42

Comment:
**style:** Consistent with other occurrences - formatting and potential logic issues need to be addressed.

How can I resolve this? If you propose a fix, please make it concise.

if (phoneDigits === '+') {
value = undefined
} else if (country && getInternationalPhoneNumberPrefix(country, metadata).indexOf(phoneDigits) !== 0) {
Empty file modified .yarn/releases/yarn-4.9.2.cjs
100755 → 100644
Empty file.
Empty file modified nx
100755 → 100644
Empty file.
Empty file modified packages/twenty-apps/hello-world/.yarn/releases/yarn-4.9.2.cjs
100755 → 100644
Empty file.
Binary file not shown.
Empty file.
Empty file modified packages/twenty-docker/podman/install-systemd-user-service
100755 → 100644
Empty file.
Empty file modified packages/twenty-docker/scripts/install.sh
100755 → 100644
Empty file.
Empty file modified packages/twenty-docker/twenty/entrypoint.sh
100755 → 100644
Empty file.
Empty file modified packages/twenty-front/scripts/inject-runtime-env.sh
100755 → 100644
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const StyledSectionHeader = styled.div`

const StyledCheckboxContainer = styled.div`
display: flex;
justify-content: flex-end;
padding-right: ${({ theme }) => theme.spacing(1)};
justify-content: flex-start;
padding-left: ${({ theme }) => theme.spacing(2)};
`;

export const SettingsRolePermissionsObjectLevelObjectFieldPermissionTableAllHeaderRow =
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
import { createComponentFamilyState } from '@/ui/utilities/state/component-state/utils/createComponentFamilyState';
export const isSelectedItemIdComponentFamilyState = createComponentFamilyState<
boolean,
string
>({
key: 'isSelectedItemIdComponentFamilyState',
defaultValue: false,
componentInstanceContext: SelectableListComponentInstanceContext,
});
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
import { createComponentFamilyState } from '@/ui/utilities/state/component-state/utils/createComponentFamilyState';

export const isSelectedItemIdComponentFamilyState = createComponentFamilyState<
boolean,
string
>({
key: 'isSelectedItemIdComponentFamilyState',
defaultValue: false,
componentInstanceContext: SelectableListComponentInstanceContext,
});
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
export const selectableItemIdsComponentState = createComponentState<string[][]>(
{
key: 'selectableItemIdsComponentState',
defaultValue: [[]],
componentInstanceContext: SelectableListComponentInstanceContext,
},
);
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';

export const selectableItemIdsComponentState = createComponentState<string[][]>(
{
key: 'selectableItemIdsComponentState',
defaultValue: [[]],
componentInstanceContext: SelectableListComponentInstanceContext,
},
);
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';

export const selectedItemIdComponentState = createComponentState<string | null>(
{
key: 'selectedItemIdComponentState',
defaultValue: null,
componentInstanceContext: SelectableListComponentInstanceContext,
},
);
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Consider updating to use createComponentStateV2 for consistency with the documented approach in the codebase

Prompt To Fix With AI
This is a comment left during a code review.
Path: packages/twenty-front/src/modules/ui/layout/selectable-list/states/selectedItemIdComponentState.ts
Line: 2:2

Comment:
**style:** Consider updating to use createComponentStateV2 for consistency with the documented approach in the codebase

How can I resolve this? If you propose a fix, please make it concise.


export const selectedItemIdComponentState = createComponentState<string | null>(
{
key: 'selectedItemIdComponentState',
defaultValue: null,
componentInstanceContext: SelectableListComponentInstanceContext,
},
);
Empty file modified packages/twenty-server/scripts/render-run.sh
100755 → 100644
Empty file.
Empty file modified packages/twenty-server/scripts/render-worker.sh
100755 → 100644
Empty file.
Empty file modified packages/twenty-server/scripts/ssl-generation/script.sh
100755 → 100644
Empty file.
Empty file.

This file was deleted.

Loading
Loading