dicash

Results 15 comments of dicash

Ok, random pick to ChatGPT: > Finland (+358): The format "(###)###-##-##" could be used, but it's more common to see Finnish numbers formatted differently depending on whether they're mobile or...

Also: UM, EH countries are missing

I can't help contributing since working from not personal setup, but I can share more-less correct phone masks from ChatGPT: ``` { AF: ['+93', '0## ### ####'], AX: ['+358', '18...

Also - I am having difficulty figuring out z-fighting here: https://codepen.io/dicash/pen/xxvXLOq I wonder if compensating points are possible here, can't figure out the logic

Thank you @marcolink !

A follow-up question, it seems to have a similar nature. It shows empty fields type for category: ```ts const articles = await client.withoutUnresolvableLinks.getEntries({ content_type: 'blogArticle', limit: 7, include: 4 })...

The produced type for `BlogCategory` is: ```ts import type { ChainModifiers, Entry, EntryFieldTypes, EntrySkeletonType, LocaleCode, } from 'contentful' export interface TypeBlogCategoryFields { slug?: EntryFieldTypes.Symbol name?: EntryFieldTypes.Symbol noindex?: EntryFieldTypes.Boolean } export...

It's very complicated setup unfortunately with nextjs / SSR, so we are forced to use ref forwarded from parent component, so we don't have access to it...

Ok here's snippet based on shadcn: ```tsx // input-currency import * as React from 'react' import { useId } from 'react' import { Input, InputFieldProps, InputProps } from './input' import...