fix: component naming

This commit is contained in:
2025-06-19 22:41:35 +03:00
parent 1ec659dd85
commit 00b443072c
6 changed files with 8 additions and 5 deletions

View File

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

View File

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

View File

@@ -502,7 +502,10 @@ export default function PrivacyPolicy() {
<li>
12.3. Актуальная версия Политики в свободном доступе расположена в
сети Интернет по адресу{' '}
<Link href={'/privacy-policy'}>{WEB + '/privacy-policy'}</Link>.
<Link
href={'/privacy-policy'}
>{`https://${WEB}/privacy-policy`}</Link>
.
</li>
</ul>
</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';
import s from './advanced-phone-input.module.scss';
import s from './styles.module.scss';
import { clsx } from 'clsx';
import { Button, PhoneInput } from '@shared/ui';
import { z } from 'zod';