mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-18 20:53:24 +00:00
linting
This commit is contained in:
@@ -18,7 +18,7 @@ const UserPage = ({ username = '', brews = [], query = '', error = null, ...prop
|
||||
const [currentError, setCurrentError] = useState(error);
|
||||
|
||||
const usernameWithS = username + (username.endsWith('s') ? `’` : `’s`);
|
||||
const groupedBrews = _.groupBy(brews, brew => brew.published ? 'published' : 'private');
|
||||
const groupedBrews = _.groupBy(brews, (brew)=>brew.published ? 'published' : 'private');
|
||||
|
||||
const brewCollection = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user