Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Point out users need to sign in #375

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/components/SearchForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default class SearchForm extends React.Component {
if (!profile) {
this.setState({
error:
'✗ There is no GitHub organization or user with this identifier.',
'✗ Either you are not signed in, or this is not a valid GitHub identifier.',
ok: null,
});
} else {
Expand Down
6 changes: 3 additions & 3 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,9 @@ export default class Index extends Component {
<h3>Use a GitHub profile</h3>
</div>
<p className="boxDescription">
Enter your GitHub profile id and we&apos;ll scan all public
repositories under it. You may Sign In with GitHub if you want
to give us access to private repositories too.
Enter any GitHub organization or identifier, and we'll find its
dependencies! You must be signed in with GitHub (see the NavBar)
for this to work, or for us to access your private repositories.
</p>
<SearchForm orgs={loggedInUserOrgs} />
</div>
Expand Down