Skip to content

Commit

Permalink
Merge branch 'main' of github.com:blb-ventures/react-flat-list
Browse files Browse the repository at this point in the history
  • Loading branch information
edusig committed Jun 21, 2023
2 parents 4a2aa11 + 6657ab3 commit 5527f19
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.8.1](https://github.com/blb-ventures/react-flat-list/compare/v0.8.0...v0.8.1) (2023-05-16)


### Bug Fixes

* fixes flat list subheader classes ([3a2609d](https://github.com/blb-ventures/react-flat-list/commit/3a2609dea4184114dbbbec80f1c8718c711dd82c))

## [0.8.0](https://github.com/blb-ventures/react-flat-list/compare/v0.7.0...v0.8.0) (2023-05-10)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blb-ventures/react-flat-list",
"version": "0.8.0",
"version": "0.8.1",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/flat-list-sub-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export interface FlatListSubHeaderProps {
}

export const FlatListSubHeader = ({ title, className }: FlatListSubHeaderProps) => (
<div className={`flat-list-sub-header ${className ?? ''}`}>
<div className="flat-list-sub-header-title">{title}</div>
<div className={`flat-list-subheader ${className ?? ''}`}>
<div className="flat-list-subheader-title">{title}</div>
</div>
);

0 comments on commit 5527f19

Please sign in to comment.