The relationship is backwards. The wrong table is being designated as the "parent". Delete the relationship and recreate it with the other table being first.
Also, think long and hard about why you even have a 1-1 relationship. They are extremely rare in the real world and are used for two primary reasons.
1. Security - table 2 is restricted and the RDBMS doesn't allow you to do this field by field so you have to relagate the sensitive columns to a separate table.
2. Sparseness - in this case there will probably be several table2's. This structure is used when an entity can be multiple types and each type has different column requirements. For example, you might have employees, individual customers, and corporate customers. All have addresses and so need relationships to tblAddress. They also have different column requirements and so rather than have sparse (empty) columns for many records because customers don't have hire dates and employees don't have company names, you create separate tables for each type. To handle the other relationships, you create a "parent" table called Entity and use that to relate to tblAddress, etc. And the employee, individual, and corporate customer tables are all 1-1 with Entity.
The most common invalid reason is too many columns. The solution to this is to get rid of the repeating groups and normalize the schema.