Skip to content

Commit

Permalink
refactor: rebase and update inport path for address pattern to gsa-tt…
Browse files Browse the repository at this point in the history
…s forms TCKT-277
  • Loading branch information
kalasgarov committed Feb 14, 2025
1 parent 7d745c6 commit 1c5bd04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import type { Meta, StoryObj } from '@storybook/react';
import { expect, userEvent } from '@storybook/test';
import { within } from '@testing-library/react';

import { type AddressPattern } from '@atj/forms';
import { type AddressPattern } from '@gsa-tts/forms-core';
import { createPatternEditStoryMeta } from '../common/story-helper.js';
import FormEdit from '../../index.js';
import { enLocale as message } from '@atj/common';
import { enLocale as message } from '@gsa-tts/forms-common';

const pattern: AddressPattern = {
id: 'address-1',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import React from 'react';
import classnames from 'classnames';

import { type AddressComponentProps } from '@atj/forms';
import { type AddressPattern } from '@atj/forms';
import { type AddressComponentProps } from '@gsa-tts/forms-core';
import { type AddressPattern } from '@gsa-tts/forms-core';

import Address from '../../../../Form/components/Address/index.js';
import { PatternEditComponent } from '../../types.js';

import { PatternEditActions } from '../common/PatternEditActions.js';
import { PatternEditForm } from '../common/PatternEditForm.js';
import { usePatternEditFormContext } from '../common/hooks.js';
import { enLocale as message } from '@atj/common';
import { enLocale as message } from '@gsa-tts/forms-common';
import styles from '../../formEditStyles.module.css';

const AddressPatternEdit: PatternEditComponent<AddressComponentProps> = ({
Expand Down

0 comments on commit 1c5bd04

Please sign in to comment.