Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .changeset/fifty-ads-jump.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/format/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @obosbbl/format

## 0.3.2

### Patch Changes

- 2cfe3be: fix formatting of Swedish phone numbers that start with the area code 010

Previously it didn't recognize 010 as a 3 digit area code, so the format would be wrong.

```js
// before
formatPhoneNumber("010-1234567"); // -> 0101-23 45 67
// after
formatPhoneNumber("010-1234567"); // -> 010-123 45 67
```

## 0.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/format/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@obosbbl/format",
"version": "0.3.1",
"version": "0.3.2",
"description": "A collection of formatting methods for OBOS",
"repository": {
"url": "https://github.com/code-obos/public-frontend-modules"
Expand Down