Compare commits

..

7 Commits

Author SHA1 Message Date
Szilárd Dóró
747bc1104a Merge pull request #1599 from nhost/changeset-release/main
chore: update versions
2023-02-08 10:38:40 +01:00
github-actions[bot]
887c168b1b chore: update versions 2023-02-08 09:37:42 +00:00
Szilárd Dóró
038d903555 Merge pull request #1598 from nhost/country-code-fix
Use country code instead of name
2023-02-08 10:36:31 +01:00
Szilárd Dóró
deb14b510b chore(dashboard): add changeset 2023-02-08 10:35:52 +01:00
Johan Eliasson
8ee23c9303 use code 2023-02-08 10:22:56 +01:00
Pilou
bca1835ecd Merge pull request #1586 from nhost/docs/typo
Correct useMultipleFilesUpload inline documentation
2023-02-06 14:28:28 +01:00
Pierre-Louis Mercereau
eb55408f85 typo 2023-02-06 10:36:46 +01:00
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# @nhost/dashboard
## 0.11.4
### Patch Changes
- deb14b51: fix(dashboard): don't break billing form
## 0.11.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/dashboard",
"version": "0.11.3",
"version": "0.11.4",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",

View File

@@ -24,7 +24,7 @@ export function CountrySelector({ value, onChange }: CountrySelectorProps) {
placeholder="Select Country"
>
{countries?.map((country) => (
<Option key={country.name} value={country.name}>
<Option key={country.name} value={country.code}>
{country.name}
</Option>
))}

View File

@@ -33,7 +33,7 @@ export interface MultipleFilesHookResult extends MultipleFilesUploadState {
}
/**
* Use the hook `useFileUpload` to upload multiple files.
* Use the hook `useMultipleFilesUpload` to upload multiple files.
*
* @example
* ```tsx