- Replaced `LIST_PUBLIC_CATEGORIES` with `LIST_ADMIN_CATEGORIES_FLAT` in `ArticleFormModal.tsx`. - Removed the "Add Event" button from the dashboard page. - Simplified the `EventsPage` by removing the button and adjusting the layout. - Cleaned up the `AdminEventEditPage` by removing unnecessary props. - Deleted unused layout and page files related to event creation. - Updated `AdminAuthContent` to use `useAdminCitiesQuery` instead of `useDiscoveryCitiesQuery`. - Refactored `EventGuestListAccessPanel` to remove the `accessMode` prop and adjust API calls accordingly. - Removed several unused components and tests related to event creation, enhancing project maintainability.
34 lines
682 B
TypeScript
34 lines
682 B
TypeScript
import { auth } from './auth'
|
|
import { blog } from './blog'
|
|
import { chats } from './chats'
|
|
import { common } from './common'
|
|
import { discovery } from './discovery'
|
|
import { errors } from './errors'
|
|
import { events } from './events'
|
|
import { profile } from './profile'
|
|
import { reviews } from './reviews'
|
|
import { seo } from './seo'
|
|
import { support } from './support'
|
|
import { status } from './status'
|
|
import { validation } from './validation'
|
|
|
|
export const texts = {
|
|
common,
|
|
errors,
|
|
auth,
|
|
discovery,
|
|
chats,
|
|
events,
|
|
profile,
|
|
support,
|
|
reviews,
|
|
blog,
|
|
seo,
|
|
status,
|
|
validation,
|
|
} as const
|
|
|
|
export type Texts = typeof texts
|
|
|
|
export { format } from './format'
|