fix: component naming #21

Merged
redrockjs merged 1 commits from dev into main 2025-06-19 19:42:16 +00:00
6 changed files with 8 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ on:
jobs: jobs:
build: build:
runs-on: self-hosted runs-on: ubuntu-latest
steps: steps:
- name: Notify Telegram start building - name: Notify Telegram start building
uses: appleboy/telegram-action@master uses: appleboy/telegram-action@master

View File

@@ -1,5 +1,5 @@
const COMPANY = '«ООО ДИТРАСО»'; const COMPANY = '«ООО ДИТРАСО»';
const WEB = 'https://www.fire-expert.ru/'; const WEB = 'fire-expert.ru';
const EMAIL = 'spo-71@yandex.ru'; const EMAIL = 'spo-71@yandex.ru';
export { COMPANY, WEB, EMAIL }; export { COMPANY, WEB, EMAIL };

View File

@@ -502,7 +502,10 @@ export default function PrivacyPolicy() {
<li> <li>
12.3. Актуальная версия Политики в свободном доступе расположена в 12.3. Актуальная версия Политики в свободном доступе расположена в
сети Интернет по адресу{' '} сети Интернет по адресу{' '}
<Link href={'/privacy-policy'}>{WEB + '/privacy-policy'}</Link>. <Link
href={'/privacy-policy'}
>{`https://${WEB}/privacy-policy`}</Link>
.
</li> </li>
</ul> </ul>
</section> </section>

View File

@@ -1 +1 @@
export { default as AdvancedPhoneInput } from './advanced-phone-input'; export { default as AdvancedPhoneInput } from './ui';

View File

@@ -1,6 +1,6 @@
'use client'; 'use client';
import s from './advanced-phone-input.module.scss'; import s from './styles.module.scss';
import { clsx } from 'clsx'; import { clsx } from 'clsx';
import { Button, PhoneInput } from '@shared/ui'; import { Button, PhoneInput } from '@shared/ui';
import { z } from 'zod'; import { z } from 'zod';