Skip to content

Commit 8f13797

Browse files
authored
update react ladies -> react robins in misc. places
1 parent fe0387d commit 8f13797

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you'd like to run the site without setting up Netlify functions locally then
3838
- Go to data and make a new YAML file for your location
3939
- Website to make google calendar links: https://decomaan.github.io/google-calendar-link-generator/
4040

41-
If you discover any bugs in this site, please [file an issue](https://github.com/react-ladies/website/issues/new).
41+
If you discover any bugs in this site, please [file an issue](https://github.com/react-robins/website/issues/new).
4242

4343
This website was originally based off of a fork of -> https://github.com/queerjs/website.
4444

data/online-2021-July.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ speakers:
6060
bio: 'Denisse is a Mexican Computer Scientist who worked during her undergraduate as a Front-End Developer. She currently works as a Site Reliability Engineer at Wizeline and is an upcoming graduate student at the University of
6161
California at Berkeley.'
6262
headshot: 'headshots/denisse_damian.jpg'
63-
githubLink: react-ladies
63+
githubLink: react-robins

functions/register.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const base = new Airtable({ apiKey: process.env.AIRTABLE_KEY }).base(process.env
33

44
exports.handler = async function (event) {
55
// ?name=Katherine Johnson&github=nasa&city=online-2021-may
6-
const { name, github = 'react-ladies', city, email } = event.queryStringParameters
6+
const { name, github = 'react-robins', city, email } = event.queryStringParameters
77

88
console.log('email', decodeURI(email))
99

src/assets/react-ladies.png

-233 KB
Binary file not shown.

src/assets/react-robins.png

614 KB
Loading

src/components/Attendees/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default ({ attendees }) => {
3333
// Pretty ugly but this way we do not get duplicate https://github.com urls
3434

3535
const cleanGhLink =
36-
a.ghLink && a.ghLink.startsWith('@') ? a.ghLink.slice(1) : a.ghLink || 'react-ladies'
36+
a.ghLink && a.ghLink.startsWith('@') ? a.ghLink.slice(1) : a.ghLink || 'react-robins'
3737

3838
const ghLink = `https://github.com/${cleanGhLink.trim().replace('https://github.com/', '')}`
3939
return (

src/components/Info/Form.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default ({ city, error }) => {
3131
// encodeURI does not encode special character, instead used
3232
// encodeURIComponent which encodes all special characters.
3333
fetch(
34-
`/.netlify/functions/register?name=${name}&github=${gh || 'react-ladies'
34+
`/.netlify/functions/register?name=${name}&github=${gh || 'react-robins'
3535
}&city=${city}&email=${encodeURIComponent(email)}`
3636
).then((res) => {
3737
//
@@ -48,7 +48,7 @@ export default ({ city, error }) => {
4848

4949
if (plusOne) {
5050
fetch(
51-
`/.netlify/functions/register?name=${plusOneName}&github=${plusOneGH || 'react-ladies'
51+
`/.netlify/functions/register?name=${plusOneName}&github=${plusOneGH || 'react-robins'
5252
}&city=${city}`
5353
)
5454
.then((res) => res.text())
@@ -66,7 +66,7 @@ export default ({ city, error }) => {
6666
>
6767
<p>
6868
If you're not comfortable showing your photo and link, you may leave the `GitHub Handle`
69-
field blank and it will default to `react-ladies`.
69+
field blank and it will default to `react-robins`.
7070
</p>
7171
<label htmlFor="name">
7272
Your Name
@@ -85,12 +85,12 @@ export default ({ city, error }) => {
8585
<input
8686
id="gh"
8787
type="text"
88-
placeholder="react-ladies"
88+
placeholder="react-robins"
8989
pattern="[A-Za-z0-9-]{1,30}"
9090
value={gh}
9191
onInvalid={(e) =>
9292
e.target.setCustomValidity(
93-
`A GitHub handle, e.g. 'react-ladies' for 'https://github.com/react-ladies'`
93+
`A GitHub handle, e.g. 'react-robins' for 'https://github.com/react-robins'`
9494
)
9595
}
9696
onChange={(e) => formDispatch({ type: "gh", payload: e.target.value.trim() })}
@@ -153,7 +153,7 @@ export default ({ city, error }) => {
153153
value={plusOneGH}
154154
onInvalid={(e) =>
155155
e.target.setCustomValidity(
156-
`A GitHub handle, e.g. 'react-ladies' for 'https://github.com/react-ladies'`
156+
`A GitHub handle, e.g. 'react-robins' for 'https://github.com/react-robins'`
157157
)
158158
}
159159
onChange={(e) => formDispatch({ type: "plusOneGH", payload: e.target.value.trim() })}

src/components/seo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import Helmet from 'react-helmet'
33

4-
import defaultMetaImage from '../assets/react-ladies.png'
4+
import defaultMetaImage from '../assets/react-robins.png'
55

66
const siteUrl = 'https://reactladies.com'
77
const socialImage = `${siteUrl}${defaultMetaImage}`

src/pages/report.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Report = () => {
88
const contactInfo = {
99
1010
twitterHandle: '@ReactJSRobins',
11-
githubHandle: 'react-ladies'
11+
githubHandle: 'react-robins'
1212
}
1313

1414
return (

0 commit comments

Comments
 (0)